Use flexbox instead of floats on montage to layout better

pull/3698/head
Isaac Connor 2023-04-27 10:44:43 -04:00
parent b5cfaef7b9
commit 3ed6be9327
1 changed files with 4 additions and 0 deletions

View File

@ -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;