mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 10:22:18 -04:00
removed feedicon from NavItem
This commit is contained in:
parent
7c33b98700
commit
a58308933b
2 changed files with 2 additions and 8 deletions
|
|
@ -3,10 +3,9 @@ interface Props {
|
||||||
text?: string;
|
text?: string;
|
||||||
href: string;
|
href: string;
|
||||||
newtab?: boolean;
|
newtab?: boolean;
|
||||||
feedicon?: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const { href, text = "", newtab = false, feedicon = false } = Astro.props;
|
const { href, text = "", newtab = false } = Astro.props;
|
||||||
---
|
---
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
@ -25,7 +24,6 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props;
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
div {
|
div {
|
||||||
/* display: inline; */
|
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
|
@ -38,7 +36,6 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
/* font-size: var(--scale-2); */
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #9dac93;
|
color: #9dac93;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|
@ -47,9 +44,5 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props;
|
||||||
div:hover {
|
div:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
text-decoration-color: #9dac93;
|
text-decoration-color: #9dac93;
|
||||||
/* background-color: #727d6b;
|
|
||||||
a {
|
|
||||||
color: #eaffd7;
|
|
||||||
} */
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -115,4 +115,5 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue