This commit is contained in:
Korbs 2024-09-05 15:57:07 -04:00
parent f4cc2fa077
commit bddd6b9c51
3 changed files with 6 additions and 5 deletions

View file

@ -2,7 +2,7 @@
"name": "@minpluto/polestar",
"author": "SudoVanilla <korbs@sudovanilla.org>",
"type": "module",
"version": "0.0.51",
"version": "0.0.52",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://ark.sudovanilla.org/MinPluto/Polestar/issues",

View file

@ -1,6 +1,6 @@
---
// Properties
const { ShowHeader, LogoPath, ShowVersion, FooterLinks, Size } = Astro.props;
const { ShowHeader, LogoPath, ShowVersion, FooterLinks, Version } = Astro.props;
// Components
import { Image } from "astro:assets";
@ -34,7 +34,7 @@ import { Image } from "astro:assets";
<slot name="bottom-items" />
</div>
<div class="fl-sidebar-footer">
{ShowVersion ? <p id="fl-your-version">v2025.05.16</p> : null}
{ShowVersion ? <p id="fl-your-version">{Version}</p> : null}
{
FooterLinks ? (
<div>
@ -108,6 +108,7 @@ import { Image } from "astro:assets";
width: 64px;
height: 64px;
pointer-events: none;
object-fit: contain;
}
.fl-sidebar-header-items a {
color: white;

View file

@ -63,9 +63,9 @@ import { Image } from 'astro:assets';
strong {
max-width: 340px;
overflow: hidden;
white-space: nowrap;
white-space: wrap;
text-overflow: ellipsis;
display: block;
display: inline-grid;
}
}
}