33 lines
640 B
SCSS
33 lines
640 B
SCSS
.upload-list {
|
|
border: 1px solid $ui-fleet-black-10;
|
|
border-radius: $border-radius;
|
|
|
|
&__header {
|
|
padding: $pad-medium $pad-large;
|
|
font-size: $x-small;
|
|
border-bottom: 1px solid $ui-fleet-black-10;
|
|
background-color: $ui-off-white;
|
|
border-top-left-radius: $border-radius;
|
|
border-top-right-radius: $border-radius;
|
|
}
|
|
|
|
&__list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
&__list-item {
|
|
padding: $pad-medium $pad-large;
|
|
border-bottom: 1px solid $ui-fleet-black-10;
|
|
|
|
&:last-child {
|
|
border-bottom: initial;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $ui-off-white;
|
|
}
|
|
}
|
|
}
|