mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
56 lines
908 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|