removed feedicon from NavItem

This commit is contained in:
theamazing0 2025-07-28 20:38:33 -04:00
parent 7c33b98700
commit a58308933b
2 changed files with 2 additions and 8 deletions

View file

@ -3,10 +3,9 @@ interface Props {
text?: string;
href: string;
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>
div {
/* display: inline; */
padding-right: 5px;
margin-right: 5px;
padding-left: 5px;
@ -38,7 +36,6 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props;
}
a {
text-decoration: none;
/* font-size: var(--scale-2); */
font-weight: 500;
color: #9dac93;
font-size: 1rem;
@ -47,9 +44,5 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props;
div:hover {
text-decoration: underline;
text-decoration-color: #9dac93;
/* background-color: #727d6b;
a {
color: #eaffd7;
} */
}
</style>

View file

@ -115,4 +115,5 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal
}
</style>
</html>