Update header component style to match element plus
parent
08de3e370b
commit
7bca8317d5
@ -1,14 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="bg-secondary flex h-fit w-full flex-row items-center justify-center p-2">
|
<div
|
||||||
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
class="flex h-fit w-full flex-row items-center justify-center border-b border-[var(--el-border-color)] p-2">
|
||||||
<div class="flex items-center gap-4 hover:cursor-pointer" @click="navigateTo('/notes')">
|
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
||||||
<Icon class="text-blue-500" name="fa6-solid:book-open" />
|
<div
|
||||||
<p class="text-xl font-bold"> Notes </p>
|
class="flex items-center gap-4 hover:cursor-pointer"
|
||||||
</div>
|
@click="navigateTo('/notes')">
|
||||||
<div class="flex w-fit justify-end">
|
<Icon
|
||||||
<Icon class="bg-secondary rounded-full hover:cursor-pointer" @click="navigateTo('/profile')"
|
class="text-blue-500"
|
||||||
name="fa6-solid:circle-user" size="36" />
|
name="fa6-solid:book-open" />
|
||||||
</div>
|
<p class="text-xl font-bold"> Notes </p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="flex w-fit justify-end">
|
||||||
|
<Icon
|
||||||
|
class="rounded-full bg-secondary hover:cursor-pointer"
|
||||||
|
@click="navigateTo('/profile')"
|
||||||
|
name="fa6-solid:circle-user"
|
||||||
|
size="36" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue