discourse/app/assets/stylesheets/common/base/exception.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

31 lines
448 B
SCSS

.error-page {
text-align: center;
padding-top: 2em;
.face {
font-size: 4.286em;
}
.reason {
font-size: var(--font-up-4);
}
.url {
font-style: italic;
font-size: var(--font-down-1);
}
.desc {
margin-top: 16px;
.d-icon-check-circle {
color: var(--success);
}
}
.buttons {
align-items: center;
display: inline-flex;
margin-top: 15px;
button {
margin: 0 20px;
}
}
}