Skip to content

Commit

Permalink
Fix overlarge thumbnails in series slider view (#1078)
Browse files Browse the repository at this point in the history
This also slightly increases the size of the thumbnails, bringing it a
bit closer to the other views.

Fixes #1077
  • Loading branch information
owi92 authored Jan 16, 2024
2 parents d962cb8 + eaf7f5e commit 7fd9160
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/ui/Blocks/Series.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,8 @@ const SliderView: React.FC<ViewProps> = ({ basePath, items }) => {
{...{ event, active, basePath }}
css={{
scrollSnapAlign: "start",
flex: "0 0 265px",
flex: "0 0 270px",
maxWidth: 270,
margin: 6,
marginBottom: 24,
}}
Expand Down

0 comments on commit 7fd9160

Please sign in to comment.