25 lines
453 B
SCSS
25 lines
453 B
SCSS
@import '../../styles/abstracts/variables';
|
|
|
|
.loading-module {
|
|
padding: 20px;
|
|
border: 1px solid $border2;
|
|
border-radius: 16px;
|
|
&__item {
|
|
background: $gray12;
|
|
border-radius: 8px;
|
|
&--photo {
|
|
height: 80px;
|
|
width: 80px;
|
|
position: relative;
|
|
.picture {
|
|
position: absolute;
|
|
top: -4px;
|
|
left: 1px;
|
|
}
|
|
.react-loading-skeleton {
|
|
border-radius: 8px 0 0 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|