rdio-scanner/client/imports/app/radio/radio-led/radio-led.component.scss
Chrystian Huot 7c2ee69151 first commit
2019-06-12 11:43:21 -04:00

25 lines
469 B
SCSS

$color-off: rgb(80, 80, 80);
$color-on: rgb(100, 230, 50);
:host {
align-items: center;
display: flex;
flex-direction: row;
justify-content: flex-end;
>div {
background: $color-off;
border-radius: 2px;
height: 12px;
width: 24px;
&:not(:last-child) {
margin-right: 4px;
}
&.on {
background: $color-on;
box-shadow: 0 0 6px 3px $color-on;
}
}
}