_preview-error.scss 339 B

12345678910111213141516171819202122
  1. .preview-error {
  2. @apply w-bg-surface-page;
  3. position: absolute;
  4. inset-inline-start: 0;
  5. width: 100%;
  6. display: grid;
  7. min-height: 100vh;
  8. align-content: center;
  9. text-align: center;
  10. &__header {
  11. margin-bottom: 0.5rem;
  12. }
  13. &__title {
  14. @apply w-h4 w-text-text-context;
  15. }
  16. &__details {
  17. @apply w-help-text;
  18. }
  19. }