mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-30 01:46:24 +01:00
23 lines
328 B
SCSS
23 lines
328 B
SCSS
|
.preview-error {
|
||
|
@apply w-bg-white;
|
||
|
position: absolute;
|
||
|
inset-inline-start: 0;
|
||
|
width: 100%;
|
||
|
display: grid;
|
||
|
min-height: 100vh;
|
||
|
align-content: center;
|
||
|
text-align: center;
|
||
|
|
||
|
&__header {
|
||
|
margin-bottom: 0.5rem;
|
||
|
}
|
||
|
|
||
|
&__title {
|
||
|
@apply w-h4 w-text-grey-600;
|
||
|
}
|
||
|
|
||
|
&__details {
|
||
|
@apply w-help-text;
|
||
|
}
|
||
|
}
|