22 lines
472 B
SCSS
22 lines
472 B
SCSS
@use "../../core/variables" as *;
|
|
|
|
// =============================================================
|
|
// Page d'erreur partagée
|
|
// =============================================================
|
|
|
|
.error-page {
|
|
text-align: center;
|
|
padding: $spacing-xl 0;
|
|
}
|
|
|
|
.error-page__code {
|
|
font-size: $font-size-display-lg;
|
|
margin-bottom: $spacing-sm;
|
|
color: $color-text-muted;
|
|
}
|
|
|
|
.error-page__message {
|
|
font-size: $font-size-xl;
|
|
margin-bottom: $spacing-lg;
|
|
}
|