From af0ea2f341969f2679d498c38a3f702b38bfa442 Mon Sep 17 00:00:00 2001 From: Alexander J Date: Fri, 22 Apr 2022 21:21:09 +0200 Subject: [PATCH] fix(a11y): only if this is screen we will change these Signed-off-by: Alexander J --- src/assets/global.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/assets/global.css b/src/assets/global.css index 87fe04e..6f63477 100644 --- a/src/assets/global.css +++ b/src/assets/global.css @@ -4,6 +4,7 @@ body { background-color: #101010; color: white; font-family: 'Comfortaa', sans-serif; + margin: 0; } a { @@ -17,6 +18,10 @@ a.visited { color: #5f1919; } +.center { + text-align: center; +} + .card { display: flex; justify-content: space-evenly; @@ -74,7 +79,7 @@ a.visited { word-wrap: break-word; } -@media (max-width: 800px) { +@media screen and (max-width: 800px) { .card { flex-direction: column; }