Styling tweaks

This commit is contained in:
josdejong 2020-06-03 16:00:47 +02:00
parent 6b63d623ec
commit 20a067508d
2 changed files with 9 additions and 5 deletions

View File

@ -18,12 +18,13 @@
position: relative;
.button {
width: 32px;
height: 32px;
width: $menu-button-size;
height: $menu-button-size;
border: none;
background: transparent;
color: white;
cursor: pointer;
padding: 0;
&:hover,
&:focus {
@ -41,11 +42,13 @@
}
.separator {
background: rgba(255, 255, 255, 0.2);
$margin: 3px;
background: rgba(255, 255, 255, 0.15);
box-sizing: border-box;
width: 1px;
height: 24px;
margin: 5px;
height: $menu-button-size - 2 * $margin;
margin: $margin;
}
.search-box-container {

View File

@ -27,6 +27,7 @@ $light-gray: #c0c0c0;
$line-height: 18px;
$indentation-width: 18px;
$menu-button-size: 32px;
$input-padding: 5px;
$search-box-offset: 10px;
$border-radius: 3px;