update
This commit is contained in:
parent
f4cc2fa077
commit
bddd6b9c51
3 changed files with 6 additions and 5 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue