minimum 2 lines for toolbar on smaller screen

This commit is contained in:
JFH
2021-08-09 17:35:07 +02:00
parent c3c1c37cb6
commit 90ce030304

View File

@@ -32,6 +32,13 @@
height: 100%;
}
/* on smaller screen, allow 2 lines for the toolbar */
@media screen and (max-width:1250px) {
.svg_editor {
grid-template-rows: minmax(80px, auto) 15px 1fr 40px;
}
}
#svgroot {
user-select: none;
position: absolute;