Skip to content

Commit

Permalink
Merge pull request #22 from Rufi512/fix-overlapping-images
Browse files Browse the repository at this point in the history
Fix to the overlapping images in the selector
  • Loading branch information
hertg authored Apr 14, 2024
2 parents 9972478 + fb8fe32 commit ff1641d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Backgrounds.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@

<style>
#backgrounds {
@apply flex flex-col gap-8 text-white fill-white;
@apply flex flex-col gap-8 text-white fill-white overflow-auto m-auto h-full;
}
.image-group {
@apply flex flex-wrap gap-4;
}
.image {
@apply w-256px h-144px hover:bg-gray-400 bg-cover bg-center border border-gray-400 bg-blend-overlay transition cursor-pointer;
@apply flex-grow w-256px h-144px hover:bg-gray-400 bg-cover bg-center border border-gray-400 bg-blend-overlay transition cursor-pointer;
background-image: var(--bg-image);
}
</style>

0 comments on commit ff1641d

Please sign in to comment.