Added @media query for services section so it'll arrange links vertically on small screen.

This commit is contained in:
Alexander Andreev 2021-02-10 03:21:42 +04:00
parent 9a974ee8dd
commit 73795b3755
Signed by: Arav
GPG Key ID: 610DF2574456329F

View File

@ -15,3 +15,7 @@ nav,
#services a, #services a,
#services span { margin: .3rem; } #services span { margin: .3rem; }
#services span a { margin: 0; } #services span a { margin: 0; }
@media screen and (max-width: 640px) {
#services { display: flex; flex-direction: column; }
}