fix(a11y): only if this is screen we will change these

Signed-off-by: Alexander J <odyssey346@disroot.org>
This commit is contained in:
Alexander J 2022-04-22 21:21:09 +02:00
parent cc4772dc60
commit af0ea2f341

View File

@ -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;
}