diff --git a/ui/v2.5/src/components/List/FilteredListToolbar.tsx b/ui/v2.5/src/components/List/FilteredListToolbar.tsx index 71aa89a50..44ce94453 100644 --- a/ui/v2.5/src/components/List/FilteredListToolbar.tsx +++ b/ui/v2.5/src/components/List/FilteredListToolbar.tsx @@ -68,8 +68,8 @@ export const FilteredListToolbar: React.FC = ({ return ( - {onToggleSidebar && ( -
+ + {onToggleSidebar && ( -
- )} + )} + -
- - {showEditFilter && ( - showEditFilter()} - view={view} - withSidebar={!!onToggleSidebar} - /> - )} - 0} - onEdit={onEdit} - onDelete={onDelete} + + {showEditFilter && ( + showEditFilter()} + view={view} + withSidebar={!!onToggleSidebar} /> + )} + 0} + onEdit={onEdit} + onDelete={onDelete} + /> + = ({ onSetZoom={zoomable ? setZoom : undefined} /> -
-
- -
+ +
); }; diff --git a/ui/v2.5/src/components/List/styles.scss b/ui/v2.5/src/components/List/styles.scss index 9f78354a6..cc43bbecd 100644 --- a/ui/v2.5/src/components/List/styles.scss +++ b/ui/v2.5/src/components/List/styles.scss @@ -871,6 +871,14 @@ input[type="range"].zoom-slider { flex-wrap: wrap; justify-content: center; row-gap: 0.5rem; + + &:first-child { + justify-content: flex-start; + } + + &:last-child { + justify-content: flex-end; + } } .btn.display-mode-select { diff --git a/ui/v2.5/src/components/Scenes/styles.scss b/ui/v2.5/src/components/Scenes/styles.scss index 20647bf17..61a4cdbac 100644 --- a/ui/v2.5/src/components/Scenes/styles.scss +++ b/ui/v2.5/src/components/Scenes/styles.scss @@ -910,6 +910,7 @@ input[type="range"].blue-slider { & > div { display: flex; flex: 1; + flex-wrap: nowrap; &:first-child { justify-content: flex-start; @@ -922,6 +923,16 @@ input[type="range"].blue-slider { &:last-child { justify-content: flex-end; } + + @include media-breakpoint-down(xs) { + &:nth-child(2) { + justify-content: flex-end; + } + + &:last-child { + display: none; + } + } } }