From 35d0bbcb8a35e04bd3c52de4b82c54bd095d977f Mon Sep 17 00:00:00 2001 From: Florrie Date: Fri, 23 Jun 2023 15:11:10 -0400 Subject: [PATCH] Allow dashboard modules to wrap onto next line --- frontend/js/components/dashboard/shortcutCreator.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/frontend/js/components/dashboard/shortcutCreator.vue b/frontend/js/components/dashboard/shortcutCreator.vue index f78614bd2..a5de344d4 100755 --- a/frontend/js/components/dashboard/shortcutCreator.vue +++ b/frontend/js/components/dashboard/shortcutCreator.vue @@ -83,13 +83,19 @@ border-bottom: 1px solid $color__border; } + .shortcutCreator .wrapper--reverse { + @include breakpoint('medium+') { + flex-flow: row-reverse; + } + } + .shortcutCreator__listing { display: flex; flex-grow: 1; flex-flow: column nowrap; @include breakpoint('small+') { - flex-flow: row nowrap; + flex-flow: row wrap; } }