Issue #3400762 by simohell, peterbihari, amanire: Long string breaks the layout of Claro

merge-requests/5439/head
Lauri Eskola 2023-11-20 12:41:56 +02:00
parent 9e7ff4623a
commit 5c2760eb15
No known key found for this signature in database
GPG Key ID: 382FC0F5B0DF53F8
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
.layout-node-form { .layout-node-form {
display: grid; display: grid;
grid-template-rows: auto 1fr; grid-template-rows: auto 1fr;
grid-template-columns: 3fr minmax(22.5rem, 1fr); grid-template-columns: minmax(0, 3fr) minmax(22.5rem, 1fr);
gap: var(--space-l); gap: var(--space-l);
} }

View File

@ -16,7 +16,7 @@
.layout-node-form { .layout-node-form {
display: grid; display: grid;
grid-template-rows: auto 1fr; grid-template-rows: auto 1fr;
grid-template-columns: 3fr minmax(360px, 1fr); grid-template-columns: minmax(0, 3fr) minmax(360px, 1fr);
gap: var(--space-l); gap: var(--space-l);
} }