Skip to content

Commit

Permalink
Merge pull request #134 from open-craft/bradmerlin/itembank-x-axis-sc…
Browse files Browse the repository at this point in the history
…roll

[MCKIN-5773] When running on mobile, make the item bank scrollable in the x direction without wrapping the items
  • Loading branch information
mtyaka authored Sep 25, 2017
2 parents 4cdf804 + 592df93 commit 86e7024
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drag_and_drop_v2/public/css/drag_and_drop.css
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,19 @@
}
}

@media screen and (max-width: 480px) {
/* Horizontal scroll for item bank on mobile */
.xblock--drag-and-drop .drag-container .item-bank .option {
flex-shrink: 0;
}

.xblock--drag-and-drop .item-bank {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
overflow-x: auto;
}
}

.xblock--drag-and-drop .sidebar-buttons .sidebar-button-wrapper {
border-collapse: collapse;
padding: 0 5px;
Expand Down

0 comments on commit 86e7024

Please sign in to comment.