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",
|
"name": "@minpluto/polestar",
|
||||||
"author": "SudoVanilla <korbs@sudovanilla.org>",
|
"author": "SudoVanilla <korbs@sudovanilla.org>",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.51",
|
"version": "0.0.52",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://ark.sudovanilla.org/MinPluto/Polestar/issues",
|
"url": "https://ark.sudovanilla.org/MinPluto/Polestar/issues",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
// Properties
|
// Properties
|
||||||
const { ShowHeader, LogoPath, ShowVersion, FooterLinks, Size } = Astro.props;
|
const { ShowHeader, LogoPath, ShowVersion, FooterLinks, Version } = Astro.props;
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { Image } from "astro:assets";
|
import { Image } from "astro:assets";
|
||||||
|
@ -34,7 +34,7 @@ import { Image } from "astro:assets";
|
||||||
<slot name="bottom-items" />
|
<slot name="bottom-items" />
|
||||||
</div>
|
</div>
|
||||||
<div class="fl-sidebar-footer">
|
<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 ? (
|
FooterLinks ? (
|
||||||
<div>
|
<div>
|
||||||
|
@ -108,6 +108,7 @@ import { Image } from "astro:assets";
|
||||||
width: 64px;
|
width: 64px;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
.fl-sidebar-header-items a {
|
.fl-sidebar-header-items a {
|
||||||
color: white;
|
color: white;
|
||||||
|
|
|
@ -63,9 +63,9 @@ import { Image } from 'astro:assets';
|
||||||
strong {
|
strong {
|
||||||
max-width: 340px;
|
max-width: 340px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: wrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
display: block;
|
display: inline-grid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue