fleet/frontend/components/DataError/_styles.scss
2022-07-01 10:21:25 -04:00

56 lines
908 B
SCSS

.data-error {
display: flex;
flex-direction: column;
align-items: center;
#error-icon {
height: 12px;
width: 12px;
margin-right: 8px;
margin-bottom: -1px;
}
#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;
}
&__card {
display: flex;
flex-direction: row;
margin: $pad-large 0 0;
}
&__inner {
display: flex;
flex-direction: row;
margin: $pad-xxxlarge 0;
}
.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;
}
}
}