Compare commits
No commits in common. '7bca8317d56767c50dd1491c2e4ee40803224b65' and '702110e6c5c91da508fc1fa69733a1537925724f' have entirely different histories.
7bca8317d5
...
702110e6c5
@ -1,22 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div class="bg-secondary flex h-fit w-full flex-row items-center justify-center p-2">
|
||||||
class="flex h-fit w-full flex-row items-center justify-center border-b border-[var(--el-border-color)] p-2">
|
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
||||||
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
<div class="flex items-center gap-4 hover:cursor-pointer" @click="navigateTo('/notes')">
|
||||||
<div
|
<Icon class="text-blue-500" name="fa6-solid:book-open" />
|
||||||
class="flex items-center gap-4 hover:cursor-pointer"
|
<p class="text-xl font-bold"> Notes </p>
|
||||||
@click="navigateTo('/notes')">
|
</div>
|
||||||
<Icon
|
<div class="flex w-fit justify-end">
|
||||||
class="text-blue-500"
|
<Icon class="bg-secondary rounded-full hover:cursor-pointer" @click="navigateTo('/profile')"
|
||||||
name="fa6-solid:book-open" />
|
name="fa6-solid:circle-user" size="36" />
|
||||||
<p class="text-xl font-bold"> Notes </p>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex w-fit justify-end">
|
</div>
|
||||||
<Icon
|
|
||||||
class="rounded-full bg-secondary hover:cursor-pointer"
|
|
||||||
@click="navigateTo('/profile')"
|
|
||||||
name="fa6-solid:circle-user"
|
|
||||||
size="36" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -1,20 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="common-layout">
|
|
||||||
<el-container>
|
|
||||||
<el-header>
|
|
||||||
<Header />
|
|
||||||
</el-header>
|
|
||||||
<el-main>
|
|
||||||
<div class="flex flex-col items-center justify-center">
|
|
||||||
<slot />
|
|
||||||
</div>
|
|
||||||
</el-main>
|
|
||||||
</el-container>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.el-header {
|
|
||||||
--el-header-padding: 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
Loading…
Reference in New Issue