From ac1c5eb470d24e03ec62a34215e6176433a85cc8 Mon Sep 17 00:00:00 2001 From: cnachtigall1991 <40701475+cnachtigall1991@users.noreply.github.com> Date: Wed, 20 Oct 2021 17:46:48 +0200 Subject: [PATCH] propper margins for scoreboard on mobile --- src/components/ScoreTeam.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/ScoreTeam.vue b/src/components/ScoreTeam.vue index 7ba1af4..185c8f4 100644 --- a/src/components/ScoreTeam.vue +++ b/src/components/ScoreTeam.vue @@ -121,4 +121,20 @@ table { border-bottom: 1px solid white; } } + +@media (max-width: 1200px) { + .scoreboard { + margin-left: 65px; + } +} + +@media (max-width: 991px) { + .scoreboard { + margin-left: 65px; + margin-top: -20px; + caption { + margin-left: -60px; + } + } +}