Skip to content

Commit

Permalink
Allow dashboard modules to wrap onto next line
Browse files Browse the repository at this point in the history
  • Loading branch information
florrie-90 authored and ifox committed Aug 10, 2023
1 parent 6e363cd commit 35d0bbc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/js/components/dashboard/shortcutCreator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 35d0bbc

Please sign in to comment.