fixed cart modal scroll issue, scrolling is now enabled by default by tweaking css

This commit is contained in:
zino
2021-05-27 12:26:02 +02:00
parent 5f11ce66a8
commit 9a4c50fd35
2 changed files with 10 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -142,7 +142,6 @@ select#dropdownLegend, select#dropdownSeatmap, .dropdownBuyerTypes {
}
#modalCartRow {
/* max-height: 40vw; */
overflow: auto;
}
@@ -296,3 +295,12 @@ span.trimChar {
margin: 0 0 20px 0;
display: none;
}
#modalCart-overlay .uabb-modal {
pointer-events: auto;
width: 100% !important;
height: 100%;
overflow-y: scroll;
top: 0 !important;
transform: none !important;
}