Spaces:
Runtime error
Runtime error
| @import "../../css/colors.css"; | |
| @import "../../css/units.css"; | |
| @import "../../css/typography.css"; | |
| @import "../../css/z-index.css"; | |
| .modal-overlay { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| z-index: $z-index-modal; | |
| background-color: $ui-modal-overlay; | |
| } | |
| .modal-content { | |
| margin: 100px auto; | |
| outline: none; | |
| border: .25rem solid $ui-white-transparent; | |
| padding: 0; | |
| border-radius: $space; | |
| user-select: none; | |
| width: 500px; | |
| color: $text-primary-light; | |
| overflow: hidden; | |
| } | |
| .illustration { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| width: 100%; | |
| height: 100px; | |
| background-color: $control-primary; | |
| } | |
| [dir="rtl"] .illustration { | |
| transform: scaleX(-1); | |
| } | |
| .illustration img { | |
| height: 80%; | |
| width: auto; | |
| } | |
| .body { | |
| background: $ui-white; | |
| padding: 1.5rem 2.25rem; | |
| text-align: center; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0.25rem; | |
| } | |
| [theme="dark"] .body { | |
| color: $text-primary; | |
| background: $ui-primary; | |
| } | |
| .body a { | |
| color: $motion-primary ; | |
| } | |