removed some old styling and moved the nav items out of the file

This commit is contained in:
ajdj100
2023-10-10 01:13:46 -04:00
parent 2151a1f9ae
commit 620a44f159
2 changed files with 13 additions and 15 deletions

View File

@@ -17,9 +17,7 @@ export default {
<template> <template>
<div id="wrapper"> <div id="wrapper">
<div> <div>
<profileSubNav link="home" content="Home"></profileSubNav>
<profileSubNav link="activityHistory" content="History"></profileSubNav>
<profileSubNav link="shadowbox" content="Shadowbox"></profileSubNav>
</div> </div>
<div id="headerImages"> <div id="headerImages">
<img id="rankImg" src="../icons/misc/test.png" /> <img id="rankImg" src="../icons/misc/test.png" />
@@ -35,7 +33,7 @@ export default {
</template> </template>
<style> <style>
#wrapper { /* #wrapper {
position: fixed; position: fixed;
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
@@ -45,7 +43,7 @@ export default {
padding-right: 120px; padding-right: 120px;
border-right: solid; border-right: solid;
border-color: var(--background-secondary); border-color: var(--background-secondary);
} } */
#mainInfo h1 { #mainInfo h1 {
margin: 20px 0 10px 0px; margin: 20px 0 10px 0px;
@@ -55,17 +53,17 @@ export default {
max-width: 200px; max-width: 200px;
} }
#headerImages { /* #headerImages {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} } */
@media screen and (max-width: 1300px) { @media screen and (max-width: 1300px) {}
#wrapper {
/* #wrapper {
flex-direction: row; flex-direction: row;
border: none; border: none;
margin-left: 25vw; margin-left: 25vw;
} } */
}
</style> </style>

View File

@@ -17,7 +17,7 @@ export default {
<template> <template>
<RouterLink :to="link"> <RouterLink :to="link">
<p class="text-white rounded-md my-3 p-2 hover:text-blue transition-all active:ring-1 active:ring-blue" <p class="text-white rounded-md my-0 p-2 hover:text-blue transition-all active:ring-1 active:ring-blue"
:class="{ active: active }">{{ content }}</p> :class="{ active: active }">{{ content }}</p>
<Icon :icon="iconName"/> <Icon :icon="iconName"/>
</RouterLink> </RouterLink>