@@ -74,6 +79,20 @@ li.home-text {
font-weight: bold;
}
+li.dominant {
+ background: royalblue;
+ color: white;
+ font-weight: bold;
+}
+
+li.dominant:hover {
+ background: skyblue;
+}
+
+li.dominant img {
+ filter: invert(1);
+}
+
.hamburger {
width: 0rem;
opacity: 0;
@@ -87,6 +106,14 @@ li.home-text {
filter var(--trans), padding-left var(--trans), padding-right var(--trans);
}
+@media screen and (max-width: 750px) and (min-width: 601px) {
+ li.home-text {
+ width: 0;
+ opacity: 0;
+ padding: 0;
+ }
+}
+
@media screen and (max-width: 600px) {
.hamburger {
display: flex;
diff --git a/data/navItems.ts b/data/navItems.ts
index a1c7e38..8c964f7 100644
--- a/data/navItems.ts
+++ b/data/navItems.ts
@@ -2,6 +2,7 @@ export const navItems = [
{ href: "/#about", title: "About" },
{ href: "/blog", title: "Blog" },
{ href: "/stories", title: "Stories" },
+ { href: "https://portfolio.eggworld.me", title: "Portfolio", dominant: true },
];
export default navItems;
diff --git a/public/icons/arrow-right-line.svg b/public/icons/arrow-right-line.svg
new file mode 100644
index 0000000..5672b73
--- /dev/null
+++ b/public/icons/arrow-right-line.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/nav/portfolio.svg b/public/nav/portfolio.svg
new file mode 100644
index 0000000..555c4d2
--- /dev/null
+++ b/public/nav/portfolio.svg
@@ -0,0 +1 @@
+
\ No newline at end of file