36 lines
502 B
SCSS
36 lines
502 B
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-flow: row;
|
|
|
|
> * {
|
|
margin: 0 $sm-padding-x;
|
|
|
|
@include mq($xsmall-only) {
|
|
margin: 0 5px;
|
|
justify-content: right;
|
|
}
|
|
|
|
span:first-child {
|
|
box-shadow: 0 2px 5px 0 rgb(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
> :last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
&:focus {
|
|
outline: none !important;
|
|
}
|
|
|
|
&.glow {
|
|
span:first-child{
|
|
box-shadow: 0 0 0 1px #ffffff, 0 0 0 1px;
|
|
}
|
|
}
|
|
}
|