Spaces:
Running
Running
File size: 1,118 Bytes
6bcb42f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
@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 !important;
}
|