make left panel narrower

Using Arial, because sans-serif has different
width in Chrome and FF.
This commit is contained in:
2019-10-29 17:59:14 +01:00
parent eaddf97a0d
commit 772e7b40ae
2 changed files with 4 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
grid: grid:
"query-box query-box" auto "query-box query-box" auto
"filters results" 1fr "filters results" 1fr
/ 25em 3fr; / 24em 3fr;
} }
} }

View File

@@ -25,7 +25,7 @@ $background-color: #CBD7F4;
@import 'custom-theme.scss'; @import 'custom-theme.scss';
*, body { *, body {
font-family: Arial, sans-serif; font-family: Arial;
font-size: 14px; font-size: 14px;
margin: 0; margin: 0;
box-sizing: border-box; box-sizing: border-box;
@@ -90,12 +90,13 @@ mat-form-field.pdb-form-number {
width: 5em; width: 5em;
} }
mat-form-field.pdb-form-mid { mat-form-field.pdb-form-mid {
width: 9em; width: 8em;
} }
.errorPanel { .errorPanel {
padding: 1ex; padding: 1ex;
background-color: map-get($mat-red, 100); background-color: map-get($mat-red, 100);
border-radius: 5px;
} }