diff --git a/src/components/Header.astro b/src/components/Header.astro index b3aec3b..83d2241 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -10,9 +10,7 @@ console.log(currentPath); Blog - Resume + Resume About @@ -104,11 +102,13 @@ console.log(currentPath); .icons { margin-left: auto; + opacity: 1; + transition: opacity 0.1s; } svg { vertical-align: middle; - transition: fill 0.2s; + transition: fill 0.1s; } .svg-white { @@ -118,4 +118,10 @@ console.log(currentPath); .svg-white:hover { fill: #ffaaaa; } + + @media (max-width: 680px) { + .icons { + opacity: 0; + } + }