mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
ea326906e3
For consistency and and the ability to change all font sizes at once in the dev tools
20 lines
292 B
SCSS
20 lines
292 B
SCSS
.empty-state {
|
|
color: var(--primary);
|
|
margin: 0;
|
|
padding: 0.5em 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.empty-state-title {
|
|
font-weight: 700;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: var(--font-up-1);
|
|
}
|
|
|
|
.empty-state-body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
}
|