Make page more mobile friendly
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful

This commit is contained in:
Adora Laura Kalb 2023-08-09 07:57:05 +02:00
parent 016b05cdd4
commit 41d65ba8d5
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056

View file

@ -4,6 +4,8 @@ $heading-font-color: #d66388;
$code-font-color: cornflowerblue;
$special-font-color: #c2f486;
$main-font-family: Consolas, monaco, monospace;
$min-device-width: 940px;
a {
margin: 0;
@ -164,3 +166,14 @@ code {
color: $special-font-color;
font-style: normal;
}
@media (max-width: $min-device-width) {
body {
padding: 15px;
line-break: normal;
}
a, code {
line-break: anywhere;
}
}