Minor UX Improvements

This commit is contained in:
tobspr 2020-06-10 11:49:33 +02:00
parent e78af50ba1
commit 90c7b87e31
3 changed files with 6 additions and 6 deletions

View File

@ -41,12 +41,10 @@
margin: 0; margin: 0;
:first-child { :first-child {
border-radius: #{D(2px)} 0 0 #{D(2px)} !important;
margin-left: 0 !important; margin-left: 0 !important;
} }
:last-child { :last-child {
margin-right: 0 !important; margin-right: 0 !important;
border-radius: 0 #{D(2px)} #{D(2px)} 0 !important;
} }
} }
} }
@ -80,7 +78,6 @@
> div { > div {
background: #f4f4f4; background: #f4f4f4;
@include S(border-radius, $globalBorderRadius);
@include S(margin-bottom, 4px); @include S(margin-bottom, 4px);
display: grid; display: grid;
@ -104,7 +101,6 @@
.counter { .counter {
@include SuperSmallText; @include SuperSmallText;
@include S(border-radius, $globalBorderRadius);
@include S(padding, 0, 3px); @include S(padding, 0, 3px);
} }
} }

View File

@ -26,6 +26,10 @@
opacity: 0; opacity: 0;
} }
} }
display: flex;
align-items: center;
flex-direction: column;
max-height: 90vh;
color: #fff; color: #fff;
text-align: center; text-align: center;

View File

@ -30,11 +30,11 @@ export const uiScales = [
}, },
{ {
id: "large", id: "large",
size: 1.2, size: 1.05,
}, },
{ {
id: "huge", id: "huge",
size: 1.4, size: 1.1,
}, },
]; ];