Refactor/Virtual lottery #70

Merged
KevinMidboe merged 17 commits from refactor/virtual-lottery into master 2021-01-02 12:52:59 +00:00
2 changed files with 13 additions and 2 deletions
Showing only changes of commit fea81dcd63 - Show all commits

View File

@@ -112,10 +112,9 @@ textarea {
.vin-button { .vin-button {
font-family: Arial; font-family: Arial;
$color: #b7debd;
position: relative; position: relative;
display: inline-block; display: inline-block;
background: $color; background: $primary;
color: #333; color: #333;
padding: 10px 30px; padding: 10px 30px;
margin: 0; margin: 0;

View File

@@ -26,3 +26,15 @@ $desktop-max: 2004px;
@content; @content;
} }
} }
.desktop-only {
@include mobile {
display: none;
}
}
.mobile-only {
@include tablet {
display: none;
}
}