fix shadows

This commit is contained in:
ThatOneCalculator 2023-01-03 17:59:22 -08:00
parent 51ab2cbc18
commit 65ee08c048
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "13.0.8.2", "version": "13.0.8.3",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -40,7 +40,8 @@ const bg = {
padding: .1em .7em; padding: .1em .7em;
border-radius: 100px; border-radius: 100px;
font-size: .8em; font-size: .8em;
text-shadow: 0 2px 2px black; text-shadow: 0 2px 2px var(--shadow);
overflow: hidden;
> .icon { > .icon {
height: 100%; height: 100%;

View File

@ -227,7 +227,7 @@ onUnmounted(() => {
background-color: #26233a; background-color: #26233a;
background-size: cover; background-size: cover;
background-position: center; background-position: center;
box-shadow: 0 0 128px rgba(0, 0, 0, 0.5) inset; box-shadow: 0 0 128px var(--shadow) inset;
will-change: background-position; will-change: background-position;
&::after { &::after {