From 3164fefbcc748a635b3c59b977dfbbe2e653b511 Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Tue, 24 Oct 2023 16:01:36 +0200 Subject: [PATCH] fix(comments buttons): add media rule for mobile --- .../comments-buttons.module.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/components/header/comments-buttons/comments-buttons.module.css b/src/components/header/comments-buttons/comments-buttons.module.css index 0a0f89dc..0cffa7ce 100644 --- a/src/components/header/comments-buttons/comments-buttons.module.css +++ b/src/components/header/comments-buttons/comments-buttons.module.css @@ -33,4 +33,21 @@ background-color: var(--background); border: 1px solid var(--border-primary); border-bottom: 1px solid var(--background); +} + +@media (max-width: 768px) { + .tabMenu { + padding-top: 49px; + position: absolute; + } + + .tabMenu li a { + line-height: 0px; + } + + .pageName { + padding-top: 47px; + position: absolute; + margin-left: 80px; + } } \ No newline at end of file