You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sup_File/scss/free/_list-group.scss

28 lines
538 B
SCSS

// List group
.media {
.media-left {
padding: $list-group-padding;
img {
@extend .z-depth-1;
}
}
}
.list-group {
.list-group-item {
&:first-child {
border-top-left-radius: $border-radius-base;
border-top-right-radius: $border-radius-base;
}
&:last-child {
border-bottom-left-radius: $border-radius-base;
border-bottom-right-radius: $border-radius-base;
}
}
a {
transition: $list-group-transition;
&:hover {
transition: $list-group-transition;
}
}
}