Widen left navigation to 300px and set max-width of right sidebar to 500px
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
ecaf4d7008
commit
a9f65390f6
|
@ -633,7 +633,8 @@ kbd {
|
|||
*/
|
||||
#app-sidebar {
|
||||
width: 27vw;
|
||||
min-width: $sidebar-width;
|
||||
min-width: $sidebar-min-width;
|
||||
max-width: $sidebar-max-width;
|
||||
display: block;
|
||||
position: relative;
|
||||
background: var(--color-main-background);
|
||||
|
@ -670,8 +671,6 @@ kbd {
|
|||
/* restrict height of settings and make scrollable */
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
border-right: 1px solid var(--color-border);
|
||||
width: 250px;
|
||||
box-sizing: border-box;
|
||||
|
||||
/* display input fields at full width */
|
||||
|
@ -699,8 +698,6 @@ kbd {
|
|||
}
|
||||
|
||||
#app-settings-header {
|
||||
border-right: 1px solid var(--color-border);
|
||||
width: 250px;
|
||||
box-sizing: border-box;
|
||||
background-color: var(--color-main-background);
|
||||
}
|
||||
|
@ -1179,4 +1176,3 @@ $popovericon-size: 16px;
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -79,5 +79,6 @@ $font-face: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif !de
|
|||
|
||||
// various structure data
|
||||
$header-height: 50px;
|
||||
$navigation-width: 250px;
|
||||
$sidebar-width: 300px;
|
||||
$navigation-width: 300px;
|
||||
$sidebar-min-width: 300px;
|
||||
$sidebar-max-width: 500px;
|
||||
|
|
Loading…
Reference in New Issue