diff --git a/package.json b/package.json index 057b09a0..08c0ebaa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.0.2", + "version": "13.0.3", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/partials/nav/link.liquid b/src/_includes/partials/nav/link.liquid index d452e9bd..7d21f9c3 100644 --- a/src/_includes/partials/nav/link.liquid +++ b/src/_includes/partials/nav/link.liquid @@ -3,6 +3,7 @@ {% if icon %} {% tablericon icon link %} + {{ link }} {% else %} {{ link }} {% endif %} @@ -14,7 +15,7 @@ {{ link }} {% else %} - + {{ link }} {% endif %} diff --git a/src/assets/img/avatar.webp b/src/assets/img/avatar.webp index e0d737af..f0098b6a 100644 Binary files a/src/assets/img/avatar.webp and b/src/assets/img/avatar.webp differ diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 5a7deb52..d610a3f1 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -113,12 +113,12 @@ blockquote { /* links */ a { - text-decoration: none; -} - -a, -.active { color: var(--accent-color); + text-decoration: none; + + & svg { + stroke: var(--accent-color); + } } a:hover, @@ -303,10 +303,12 @@ a.view-all:focus svg { cursor: not-allowed; } -a svg, -nav .active svg, -nav ul li .active svg { - stroke: var(--accent-color); +.active { + color: var(--accent-color) !important; +} + +.active svg { + stroke: var(--accent-color) !important; } /* social icons */ diff --git a/src/assets/styles/components/menu.css b/src/assets/styles/components/menu.css index f7a72f94..48efad77 100644 --- a/src/assets/styles/components/menu.css +++ b/src/assets/styles/components/menu.css @@ -10,11 +10,13 @@ overflow: hidden; margin: 0; - & .icon > svg { + & .icon > svg, + & .active > svg { display: block; } - & .icon > span { + & .icon > span, + & .active > span { display: none; } } @@ -78,6 +80,7 @@ theme-toggle { justify-content: center; align-items: center; gap: 0; + z-index: 1; & > li { display: flex; @@ -89,11 +92,13 @@ theme-toggle { color: var(--text-color); background: var(--background-color); - & .icon > svg { + & .icon > svg, + & .active > svg { display: none; } - & .icon > span { + & .icon > span, + & .active > span { display: inline; } }