0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 13:10:14 +01:00
wagtail/client/scss/components/_preview-error.scss
sag᠎e 5ee5acb7ce
Introduce a new auto-updating preview panel inside the page editor (#8671)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-07-14 13:59:05 +01:00

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;
}
}