Decrease body width and change focus outline color

This commit is contained in:
Maciej Pędzich 2023-09-03 04:00:06 +02:00
parent 1b98aabe37
commit 7ec3ff0344

View File

@ -4,5 +4,9 @@
body {
margin: 0 auto;
max-width: min(1200px, 85%);
max-width: min(100rem, 75%);
}
a:focus {
outline: var(--color-primary) solid 3px;
}