discourse/app/assets/stylesheets/common/components/conditional-loading-section.scss
Jarek Radosz ea326906e3
DEV: Use css var font sizes (#18518)
For consistency and and the ability to change all font sizes at once in the dev tools
2022-10-12 15:31:59 +02:00

30 lines
461 B
SCSS

.conditional-loading-section {
&.is-loading {
padding: 2em;
margin: 1em;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-very-low);
flex-direction: column;
.title {
font-size: var(--font-up-1);
font-weight: 700;
}
}
&:not(.is-loading) {
animation: fadein 0.5s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
}