27 lines
411 B
SCSS
27 lines
411 B
SCSS
.AuthorsList {
|
|
.action {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 8rem;
|
|
}
|
|
|
|
.loading {
|
|
@include font-size(1.4rem);
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
opacity: 0.5;
|
|
|
|
.icon {
|
|
position: relative;
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
}
|
|
}
|