mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
35 lines
618 B
SCSS
35 lines
618 B
SCSS
.sandbox-expiry-message {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 12px $pad-large;
|
|
margin-bottom: $pad-large;
|
|
background-color: $ui-expiry-message;
|
|
border: 1px solid #ECE0BB;
|
|
border-radius: $border-radius;
|
|
font-size: $xx-small;
|
|
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
span {
|
|
display: flex;
|
|
align-items: center;
|
|
color: $core-fleet-black;
|
|
font-weight: $bold;
|
|
text-align: right;
|
|
|
|
.icon-external {
|
|
width: 12px;
|
|
padding-left: $pad-xsmall;
|
|
}
|
|
}
|
|
}
|