Skip to content

Commit

Permalink
web/remux: reduce bullet padding only on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
wukko committed Nov 18, 2024
1 parent a0b621c commit e09e098
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/src/routes/remux/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,16 @@
#remux-bullets {
padding: var(--padding);
gap: var(--padding);
}
}
@media screen and (max-width: 535px) {
.progress-bar {
width: 350px;
}
#remux-bullets {
gap: var(--padding);
}
}
</style>

0 comments on commit e09e098

Please sign in to comment.