feat(loadingScreen): brighter text
This commit is contained in:
@@ -19,7 +19,7 @@ const onClick = () => {
|
||||
viewBox="0 0 512 512"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
class="size-20 transition-[fill] duration-500 animate-pulse"
|
||||
:style="{ fill: isReady ? '#888888' : '#2a2a2a' }"
|
||||
:style="{ fill: isReady ? '#aaaaaa' : '#6f6f6f' }"
|
||||
>
|
||||
<g>
|
||||
<path
|
||||
@@ -117,7 +117,10 @@ const onClick = () => {
|
||||
</svg>
|
||||
<span
|
||||
class="select-none transition-colors duration-500 animate-pulse"
|
||||
:style="{ color: isReady ? '#888888' : '#2a2a2a', fontFamily: 'NDS10' }"
|
||||
:style="{
|
||||
color: isReady ? '#aaaaaa' : '#6f6f6f',
|
||||
fontFamily: 'NDS10',
|
||||
}"
|
||||
>
|
||||
{{
|
||||
isReady ? t("loadingScreen.clickToStart") : t("loadingScreen.loading")
|
||||
|
||||
Reference in New Issue
Block a user