mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 10:43:00 +00:00
Avoid using 0px, because minifiers might convert the value to 0, which will still cause issues on IE.
This commit is contained in:
parent
1970ab4e63
commit
73c1016f4a
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@
|
|||
margin-left: 5px;
|
||||
// We need to set any low-enough flex base size (0px), making it growable (1) and non-shrinkable (0).
|
||||
// This is needed to ensure that IE makes the element fill the available space.
|
||||
flex: 1 0 0px;
|
||||
flex: 1 0 1px;
|
||||
|
||||
.rp-state-overview & {
|
||||
margin-left: 0;
|
||||
|
|
Loading…
Reference in a new issue