diff --git a/saturn/server/static/css/main.css b/saturn/server/static/css/main.css index 1d8ac18..6b699b6 100644 --- a/saturn/server/static/css/main.css +++ b/saturn/server/static/css/main.css @@ -39,8 +39,9 @@ h1 { a { color: var(--link-01); + position: relative; } -a:hover { +a:hover, a:visited:hover { color: var(--hover-primary-text); } a:active { @@ -52,3 +53,12 @@ a:focus { a:visited { color: var(--visited-link); } + +a:before { + content: ''; + position: absolute; + left: 0; + top: -1rem; + bottom: -1rem; + right: 0; +}