fleet/frontend/components/DeviceUserError/_styles.scss

51 lines
1,001 B
SCSS
Raw Normal View History

.device-user-error {
display: flex;
flex-direction: column;
align-items: center;
&__mobile-view {
align-self: center;
vertical-align: middle;
justify-content: center; /* vertical centering */
min-height: 100vh; /* full viewport height */
}
&__inner {
display: flex;
flex-direction: row;
margin: $pad-xxxlarge 0;
}
.info {
display: flex;
flex-direction: column;
gap: $pad-large;
max-width: 333px;
padding: $pad-small;
&__header {
display: block;
gap: $pad-large;
color: $core-fleet-black;
font-weight: $bold;
font-size: $x-small;
text-align: center;
.icon {
vertical-align: sub;
margin-right: $pad-small;
position: relative;
bottom: 1px;
}
}
&__data {
display: block;
color: $core-fleet-black;
font-weight: normal;
font-size: $x-small;
text-align: center;
line-height: 21px; // Matches design
}
}
}