0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fight fire with overflow.

Prevents firefox from allowing blog title to overflow. This is an incredibly stupid fix for an incredibly stupid browser bug. Firefox is the worst modern browser in the world at basic layout rendering. Could someone let them know please? Closes #5430 as replacement.
This commit is contained in:
John O'Nolan 2015-06-24 12:16:58 +01:00
parent b9793c0364
commit 0928ed118e

View file

@ -32,6 +32,7 @@
flex: 0 0 235px;
display: flex;
flex-direction: column;
overflow: hidden;
border-right: #e1e1e1 1px solid;
background: #f6f6f6;
transform: translateX(0);
@ -68,6 +69,7 @@
.gh-nav-menu-details {
flex-grow: 1;
overflow: hidden;
padding-right: 10px;
}