Skip to content

Commit 86e7024

Browse files
authored
Merge pull request #134 from open-craft/bradmerlin/itembank-x-axis-scroll
[MCKIN-5773] When running on mobile, make the item bank scrollable in the x direction without wrapping the items
2 parents 4cdf804 + 592df93 commit 86e7024

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drag_and_drop_v2/public/css/drag_and_drop.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,19 @@
586586
}
587587
}
588588

589+
@media screen and (max-width: 480px) {
590+
/* Horizontal scroll for item bank on mobile */
591+
.xblock--drag-and-drop .drag-container .item-bank .option {
592+
flex-shrink: 0;
593+
}
594+
595+
.xblock--drag-and-drop .item-bank {
596+
-ms-flex-flow: row nowrap;
597+
flex-flow: row nowrap;
598+
overflow-x: auto;
599+
}
600+
}
601+
589602
.xblock--drag-and-drop .sidebar-buttons .sidebar-button-wrapper {
590603
border-collapse: collapse;
591604
padding: 0 5px;

0 commit comments

Comments
 (0)