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
1 changed files with 5 additions and 1 deletions

View File

@ -14,4 +14,8 @@ nav,
#services a,
#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; }
}