mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
48 lines
800 B
SCSS
48 lines
800 B
SCSS
.table-data-error {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: $pad-xxxlarge;
|
|
|
|
#error-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
#new-tab-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
a {
|
|
font-size: $x-small;
|
|
color: $core-vibrant-blue;
|
|
font-weight: $bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&__inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.info {
|
|
&__header {
|
|
display: block;
|
|
color: $core-fleet-black;
|
|
font-weight: $bold;
|
|
font-size: $x-small;
|
|
text-align: left;
|
|
}
|
|
&__data {
|
|
display: block;
|
|
color: $core-fleet-black;
|
|
font-weight: normal;
|
|
font-size: $x-small;
|
|
text-align: left;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|