18 lines
276 B
SCSS
18 lines
276 B
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
.button {
|
|
&:first-child {
|
|
margin-right: 3rem;
|
|
|
|
@include mq($small-only) {
|
|
margin-right: 1rem;
|
|
}
|
|
}
|
|
|
|
span:last-child {
|
|
color: black;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
}
|