Fixed popup

This commit is contained in:
Patrick Hatsune 2024-06-03 16:45:50 -07:00
parent 46be945e1a
commit 0d573e212f
Signed by: keyemail
GPG key ID: 6FD1A0FDB0D914C2
2 changed files with 15 additions and 8 deletions

View file

@ -20,8 +20,9 @@
<li><router-link to="/socials" @click="mobileUI()">Socials</router-link></li>
<li><a href="https://git.keyemail.dev/explore/">Projects</a></li>
</ul>
</div>
</div>
</div>
<template v-else/>
</template>
<script>

View file

@ -9,22 +9,27 @@
<li @mouseover="showActiveBadge = true" @mouseleave="showActiveBadge = false">
<img src="@/assets/badges/code.svg" aria-label="CODE" width="25px" height="25px"/>
<div v-if="showActiveBadge">Active Developer</div>
<template v-else/>
</li>
<li @mouseover="showHTMLBadge = true" @mouseleave="showHTMLBadge = false">
<img src="@/assets/badges/html.svg" aria-label="HTML5" width="25px" height="25px"/>
<div v-if="showHTMLBadge">HTML</div>
<template v-else/>
</li>
<li @mouseover="showCSSBadge = true" @mouseleave="showCSSBadge = false">
<img src="@/assets/badges/css.svg" aria-label="CSS3" width="25px" height="25px"/>
<div v-if="showCSSBadge">CSS</div>
<template v-else/>
</li>
<li @mouseover="showJavascriptBadge = true" @mouseleave="showJavascriptBadge = false">
<img src="@/assets/badges/js.svg" aria-label="JS" width="25px" height="25px"/>
<div v-if="showJavascriptBadge">Javascript</div>
<template v-else/>
</li>
<li @mouseover="showVue3Badge = true" @mouseleave="showVue3Badge = false">
<img src="@/assets/badges/vue.svg" aria-label="VUE3" width="25px" height="25px"/>
<div v-if="showVue3Badge">Vue 3</div>
<template v-else/>
</li>
</ul>
</div>
@ -88,10 +93,13 @@ header {
}
#name div {
top: calc(100% + 5px);
left: 50%;
pointer-events: none;
position: absolute;
top: 230px;
transform: translate(0%, -50%);
width: fit-content;
translate: -50%;
z-index: 1;
white-space: nowrap;
padding: 5px;
height: 20px;
background-color: #151d2f;
@ -108,11 +116,11 @@ header h1 {
header ul {
display: flex;
flex-direction: row;
margin-bottom: 10px;
width: fit-content;
}
header li {
position: relative;
display: flex;
align-items: center;
justify-content: center;
@ -241,9 +249,7 @@ article input {
align-items: center;
margin-left: 0;
}
#name div {
top: 325px
}
header h1 {
margin-left: 0px;
}