-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve(ui): responsive
- Loading branch information
Showing
5 changed files
with
60 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<template> | ||
<div> | ||
<footer class="border-t border-slate-100 md:hidden"> | ||
<nav class="flex items-center justify-between gap-4 p-2 px-4"> | ||
<NuxtLink to="/"> | ||
<Icon name="ep:house" size="24" /> | ||
</NuxtLink> | ||
<NuxtLink to="/documents"> | ||
<Icon name="system-uicons:document" size="24" /> | ||
</NuxtLink> | ||
|
||
<div class="relative"> | ||
<n-button | ||
circle | ||
type="primary" | ||
class="absolute -left-7 -top-10 h-14 w-14 shadow-xl" | ||
> | ||
<Icon name="system-uicons:plus" size="30" /> | ||
</n-button> | ||
</div> | ||
<NuxtLink to="/reports"> | ||
<Icon name="material-symbols-light:multiline-chart" size="24" /> | ||
</NuxtLink> | ||
<NuxtLink to="/settings"> | ||
<Icon name="heroicons:cog" size="24" /> | ||
</NuxtLink> | ||
</nav> | ||
</footer> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters