Fix top bar button having too little spacing left and right of text

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-05-05 16:51:34 +02:00 committed by Jonas Rittershofer
parent 907fcb407e
commit 5ee468439f

View file

@ -52,7 +52,12 @@ $top-bar-height: 60px;
button {
cursor: pointer;
min-height: 44px;
margin: 8px;
// Fix button having too little spacing left and right of text
&:not(.button-small) {
padding-left: 16px;
padding-right: 16px;
}
&.button-small {
width: 44px;