Use flexbox instead of floats on montage to layout better
parent
b5cfaef7b9
commit
3ed6be9327
|
@ -11,6 +11,9 @@
|
|||
#monitors {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
#monitors:after {
|
||||
content: ".";
|
||||
|
@ -22,6 +25,7 @@
|
|||
}
|
||||
|
||||
#monitors .monitor {
|
||||
float: none;
|
||||
min-width: 180px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
|
Loading…
Reference in New Issue