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:
parent
5e89b1c1d0
commit
19b5baf7ee
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue