Add min-width and overflow hidden to toolbar to avoid line break in lower res

This commit is contained in:
Matias Arriola 2022-01-07 13:19:43 -03:00
parent d97af3c1b1
commit 33718263a7

View File

@ -3,6 +3,9 @@ div#toolbar {
height: 50px;
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
background-color: #fff;
// TODO: make toolbar responsive
min-width: 900px;
overflow: hidden;
}
div#toolbar .buttonContainer {