0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00

🐛 Fix scroll for import modal

This commit is contained in:
alonso.torres 2024-03-18 16:04:29 +01:00
parent 5e89b1c1d0
commit 19b5baf7ee

View file

@ -12,6 +12,8 @@
.modal-container {
@extend .modal-container-base;
display: flex;
flex-direction: column;
}
.modal-header {
@ -29,6 +31,9 @@
.modal-content {
@include bodySmallTypography;
flex: 1;
overflow-y: auto;
overflow-x: hidden;
display: grid;
grid-template-columns: 1fr;
gap: $s-16;