feat(compo):准备主导航区域。

This commit is contained in:
徐涛 2023-12-28 09:11:28 +08:00
parent fc3bc6f210
commit 20aefb48ce
2 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,9 @@
import ActionIcon from "@/components/ActionIcon/ActionIcon";
import ActivatableLink from "@/components/ActivatableLink/ActivatableLink";
import Divider from "@/components/Divider/Divider";
import Spacer from "@/components/Spacer/Spacer";
import {
IconBrandGithub,
IconDna2,
IconFileExport,
IconFileImport,
@ -39,6 +42,12 @@ export default function NavigationSection() {
<ActivatableLink href="/" leftIcon={<IconKeyboard stroke="1.5" />}>
码表配置
</ActivatableLink>
<Spacer />
<div class={prop("footer", classes)}>
<ActionIcon size="m" color="primary" variant="subtle">
<IconBrandGithub stroke="1.5" />
</ActionIcon>
</div>
</aside>
);
}

View File

@ -9,4 +9,8 @@
.library-name {
font-size: var(--font-size-xs);
}
.footer {
width: 100%;
@include flex(row, flex-start, center);
}
}