diff --git a/src/index.html b/src/index.html index 0f3e61a..13883fa 100644 --- a/src/index.html +++ b/src/index.html @@ -43,21 +43,27 @@ display: flex; flex-wrap: wrap; gap: 1em; + max-width: 30rem; } #links > * > div { display: inline-flex; flex-direction: column; } #links > * > div > * { width: max-content; } - #links a { font-weight: bold; } + #links a { + font-weight: bold; + text-decoration: none; + } #links > * > div > :nth-child(2) { font-size: 0.8em; } + +
-