mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 02:12:19 -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;
|
||||
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>
|
||||
|
|
|
|||
|
|
@ -115,4 +115,5 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal
|
|||
}
|
||||
</style>
|
||||
|
||||
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue