From 74a0771f01a0a94bd4cccb3613524a187b11ea0c Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 10 Oct 2022 16:16:33 +0200 Subject: [PATCH] feat: responsive homepage width --- src/components/Home.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/Home.vue b/src/components/Home.vue index dda024c..aeeae4b 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -309,4 +309,20 @@ } } + @media screen and (max-width: 1600px) { + .readme { + align-self: center; + margin-bottom: 0; + font-size: 1vw; + } + } + @media screen and (max-width: 1200px) { + .name { + font-size: 1.2vw; + + align-self: center; + margin-bottom: 0; + } + } +