mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:08:44 +08:00
40 lines
588 B
SCSS
40 lines
588 B
SCSS
.conditional-loading-section {
|
|
&.is-loading {
|
|
padding: 2em;
|
|
margin: 1em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: $primary-very-low;
|
|
flex-direction: column;
|
|
|
|
.title {
|
|
font-size: $font-up-1;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
&:not(.is-loading) {
|
|
animation: fadein 0.5s;
|
|
-webkit-animation: fadein 0.5s;
|
|
}
|
|
|
|
@keyframes fadein {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes fadein {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|