mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
60 lines
906 B
SCSS
60 lines
906 B
SCSS
.modal {
|
|
&__background {
|
|
background-color: rgba($black, 0.25);
|
|
bottom: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 3;
|
|
}
|
|
|
|
&__content {
|
|
padding: $base;
|
|
padding-top: 0;
|
|
|
|
.input-field {
|
|
width: 100%;
|
|
}
|
|
|
|
button {
|
|
width: calc(50% - 25px);
|
|
margin-top: 25px;
|
|
|
|
&:last-child {
|
|
margin-left: 50px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__ex {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: $base;
|
|
text-decoration: none;
|
|
|
|
.button {
|
|
color: $text-medium;
|
|
font-size: $larger;
|
|
}
|
|
}
|
|
|
|
&__header {
|
|
padding: $base $base 0;
|
|
font-size: 24px;
|
|
font-weight: $light;
|
|
line-height: 1.33;
|
|
letter-spacing: 1px;
|
|
color: $text-dark;
|
|
margin: 0 0 30px;
|
|
}
|
|
|
|
&__modal_container {
|
|
background-color: $white;
|
|
left: 25%;
|
|
position: absolute;
|
|
top: 25%;
|
|
width: 600px;
|
|
z-index: 3;
|
|
}
|
|
}
|