forked from MyArtverse-Project/MyArtverse
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Kerby Keith Aquino
committed
Dec 27, 2022
1 parent
a54c751
commit 16252a1
Showing
9 changed files
with
97 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
@layer base { | ||
body { | ||
@apply font-open-sans; | ||
} | ||
} | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utitlies; | ||
@tailwind utilities; |
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,27 @@ | ||
<script lang="ts" setup> | ||
import { ref } from "vue" | ||
const root = ref<HTMLDivElement | null>(null); | ||
function test() { | ||
console.log("focused") | ||
} | ||
onMounted(() => { | ||
console.log(root.value?.outerHTML) | ||
}) | ||
</script> | ||
|
||
<template> | ||
<div ref="root" class="flex items-center gap-x-3 border-2 rounded-md"> | ||
<input :onfocus="test" class="px-4 py-2" type="text" placeholder="Search fursonas" /> | ||
<div> | ||
<i class="fa-solid fa-times fa-lg fa-fw"></i> | ||
<i class="fa-solid fa-magnifying-glass fa-fw"></i> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style lang="scss"> | ||
</style> |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
<script setup></script> | ||
|
||
<template> | ||
<header> | ||
<nav> | ||
<NuxtLink to="/">MyFursona</NuxtLink> | ||
<SearchComponent /> | ||
<UserLoggedIn /> | ||
</nav> | ||
</header> | ||
<header> | ||
<div class="flex items-center justify-between px-12 py-6"> | ||
<NuxtLink to="/" class="logo-wordmark">MyFursona</NuxtLink> | ||
<NavbarSearchBox /> | ||
<UserLoggedIn /> | ||
</div> | ||
</header> | ||
</template> | ||
|
||
<style lang="scss"></style> | ||
<style lang="scss"> | ||
.logo-wordmark { | ||
@apply text-3xl font-bold font-inter select-none | ||
bg-gradient-to-br from-orange-400 via-purple-500 to-pink-400 bg-clip-text text-transparent; | ||
} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
<script setup></script> | ||
|
||
<template> | ||
<div> | ||
<div> | ||
<h1>Manage, store, and show your fursonas in one place</h1> | ||
<p> | ||
MyFursona is an open-source platform where you can show off your fluffy | ||
characters and show them off to your friends! | ||
</p> | ||
</div> | ||
</div> | ||
<Container title="Home"> | ||
<div id="hero"> | ||
<article> | ||
<h1>MyFursona</h1> | ||
<p> | ||
MyFursona is an open-source platform where you can show off your fluffy | ||
characters and show them off to your friends! | ||
|
||
Manage, store, and show your fursonas in one place | ||
</p> | ||
</article> | ||
</div> | ||
</Container> | ||
</template> | ||
|
||
<style lang=""></style> | ||
<style lang="scss"> | ||
</style> |