minimum 2 lines for toolbar on smaller screen

master
JFH 2021-08-09 17:35:07 +02:00
parent c3c1c37cb6
commit 90ce030304
1 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,13 @@
height: 100%; 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 { #svgroot {
user-select: none; user-select: none;
position: absolute; position: absolute;