diff options
| author | Fuwn <[email protected]> | 2024-01-31 03:45:59 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-31 03:45:59 -0800 |
| commit | 546dc1cda7b0e848b331b4700336b24a16734e50 (patch) | |
| tree | 620366805708db2cc7ce6d72472835b9dd58e506 /src/lib | |
| parent | feat(layout): add birthdays to schedule dropdown (diff) | |
| download | due.moe-546dc1cda7b0e848b331b4700336b24a16734e50.tar.xz due.moe-546dc1cda7b0e848b331b4700336b24a16734e50.zip | |
feat(birthdays): fancier cards
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Tools/Birthdays.svelte | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/Tools/Birthdays.svelte b/src/lib/Tools/Birthdays.svelte index 1a50f9e8..ba07de49 100644 --- a/src/lib/Tools/Birthdays.svelte +++ b/src/lib/Tools/Birthdays.svelte @@ -131,12 +131,21 @@ <Error type="Character" card /> {/await} -<style> +<style lang="scss"> #characters { display: grid; grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr)); gap: 1rem; grid-row-gap: 1rem; align-items: start; + + img { + width: 100%; + height: auto; + object-fit: cover; + border-radius: 8px; + margin-top: 0.5rem; + box-shadow: 0 4px 30px var(--base01); + } } </style> |