diff --git a/docs/main.css b/docs/main.css index 3487fbd..1be6c57 100644 --- a/docs/main.css +++ b/docs/main.css @@ -359,6 +359,18 @@ p { background-repeat: no-repeat; } +@media screen and (max-width: 460px) { + .horizontal-line { + height: 1.15rem; + } +} + +@media screen and (max-width: 360px) { + .horizontal-line { + height: 0.9rem; + } +} + .smalltext { font-size: 0.8rem; text-align: center; diff --git a/src/css/style.css b/src/css/style.css index c6c8f29..27da8d2 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -249,6 +249,18 @@ p { background-repeat: no-repeat; } +@media screen and (max-width: 460px) { + .horizontal-line { + height: 1.15rem; + } +} + +@media screen and (max-width: 360px) { + .horizontal-line { + height: 0.9rem; + } +} + .smalltext { font-size: 0.8rem; text-align: center;