reduce (invisible) width of header

This commit is contained in:
Frédéric Péters 2018-09-11 07:43:03 +02:00
parent bb0c7e5487
commit 8035dbb55f
1 changed files with 2 additions and 1 deletions

View File

@ -178,6 +178,7 @@ div#header h1 {
height: $header-height;
line-height: $header-height;
padding: 0 0 0 $sidepage-width + $sidepage-left-space;
box-sizing: border-box;
margin: 0;
font-weight: normal;
color: white;
@ -185,7 +186,7 @@ div#header h1 {
z-index: 100;
max-width: 80%;
width: 80%;
max-width: calc(100% - #{$header-height} - 21px);
max-width: calc(100% - #{$sidepage-width} - 21px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;