-
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.
- Loading branch information
1 parent
b80eef9
commit 4e31702
Showing
12 changed files
with
374 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<template> | ||
<div class="nav-bar"> | ||
<div class="title"> | ||
<h1>Zoompinch</h1> | ||
</div> | ||
<div class="actions"> | ||
<a href="https://github.com/MauriceConrad/zoompinch" target="_blank"> | ||
<n-icon size="medium"> | ||
<logo-github /> | ||
</n-icon> | ||
<span> GitHub </span> | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { LogoGithub } from '@vicons/ionicons5'; | ||
import { NIcon } from 'naive-ui'; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
.nav-bar { | ||
border-bottom: 1px solid #ddd; | ||
padding: 10px 20px; | ||
display: grid; | ||
color: #444; | ||
grid-template-columns: auto auto; | ||
.title { | ||
justify-self: center start; | ||
place-self: center start; | ||
h1 { | ||
margin: 0; | ||
font-size: 1.6em; | ||
} | ||
} | ||
.actions { | ||
justify-self: center end; | ||
place-self: center end; | ||
a { | ||
text-decoration: inherit; | ||
color: inherit; | ||
display: flex; | ||
place-items: center; | ||
gap: 5px; | ||
} | ||
} | ||
} | ||
</style> |
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
Oops, something went wrong.