diff options
| author | Fuwn <[email protected]> | 2024-01-05 20:09:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-05 20:09:34 -0800 |
| commit | ae381a4e80eb8064f929121a3d51f93b6d136c7f (patch) | |
| tree | 716c4e897707631a4d6c944267aed5745211e9c7 /src/routes/+layout.svelte | |
| parent | feat(layout): navigation font (diff) | |
| download | due.moe-ae381a4e80eb8064f929121a3d51f93b6d136c7f.tar.xz due.moe-ae381a4e80eb8064f929121a3d51f93b6d136c7f.zip | |
feat(css): fancy shadows
Diffstat (limited to 'src/routes/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 83b7f358..c237857e 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -66,7 +66,7 @@ <a href="/api/authentication/log-out" class="header-item">Log out </a> {#if data.user} <a href={`/user/${currentUserIdentity.name}`} class="header-item"> - <img class="fancy-image" id="avatar" src={currentUserIdentity.avatar} alt="Avatar" /> + <img id="avatar" src={currentUserIdentity.avatar} alt="Avatar" /> </a> {/if} {/if} @@ -152,5 +152,7 @@ width: 2em; display: inline-block; vertical-align: middle; + border-radius: 8px; + box-shadow: 0 1.5px 9px var(--base01), 0 0 0 4px var(--base0E), 0 4px 30px var(--base01); } </style> |