diff options
| author | Bobby <[email protected]> | 2026-04-22 08:10:30 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-04-22 08:10:30 +0530 |
| commit | 0bb36660ec4bceeb4bd9b18cf47a30ba8eded427 (patch) | |
| tree | f94aa2de99dcb7ee87639a3f60539fd376577bb9 /lib/components/AppVersion.svelte | |
| parent | e72162b34bddbf04998eea934335e9496b8649f8 (diff) | |
| download | hollowdark-0bb36660ec4bceeb4bd9b18cf47a30ba8eded427.tar.xz hollowdark-0bb36660ec4bceeb4bd9b18cf47a30ba8eded427.zip | |
Rename ui-lib to lib, split Begin into smaller components, add Credits, bump version to 1.0 from package.json
Diffstat (limited to 'lib/components/AppVersion.svelte')
| -rw-r--r-- | lib/components/AppVersion.svelte | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/components/AppVersion.svelte b/lib/components/AppVersion.svelte new file mode 100644 index 0000000..315a47b --- /dev/null +++ b/lib/components/AppVersion.svelte @@ -0,0 +1,20 @@ +<script lang="ts"> + import { APP_VERSION } from '@hollowdark/lib/version' +</script> + +<p class="app-version">v {APP_VERSION}</p> + +<style> + .app-version { + position: absolute; + bottom: var(--space-6); + left: 0; + right: 0; + margin: 0; + text-align: center; + font-family: var(--font-ui); + font-size: 10px; + color: #3d382f; + letter-spacing: 1px; + } +</style> |
