mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
37 lines
632 B
SCSS
37 lines
632 B
SCSS
.device-user-error {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
#error-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
margin-right: 8px;
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
&__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: center;
|
|
}
|
|
&__data {
|
|
display: block;
|
|
color: $core-fleet-black;
|
|
font-weight: normal;
|
|
font-size: $x-small;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|