Fix overflowing text on mobile when sidebar is displayed
This commit is contained in:
parent
a2f8f62818
commit
899b0dd1d1
1 changed files with 8 additions and 0 deletions
|
@ -1489,6 +1489,14 @@ h4 > .notable-traits {
|
||||||
background-color: rgba(0,0,0,0);
|
background-color: rgba(0,0,0,0);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
This allows to prevent the version text to overflow the sidebar title on mobile mode when the
|
||||||
|
sidebar is displayed (after clicking on the "hamburger" button).
|
||||||
|
*/
|
||||||
|
.sidebar.mobile > div.version {
|
||||||
|
overflow: hidden;
|
||||||
|
max-height: 33px;
|
||||||
|
}
|
||||||
.sidebar {
|
.sidebar {
|
||||||
width: calc(100% + 30px);
|
width: calc(100% + 30px);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue