From 97b16ba254ec6e588af6cdf79114a2962eb0554a Mon Sep 17 00:00:00 2001 From: Antonio Date: Sat, 5 Jun 2021 21:38:12 +0200 Subject: [PATCH] Fixed scrollbar problems related to about section. --- static/css/sections/about.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/static/css/sections/about.css b/static/css/sections/about.css index 4f7b1e5..71d4b17 100644 --- a/static/css/sections/about.css +++ b/static/css/sections/about.css @@ -496,11 +496,24 @@ .about-section.container { max-width: 100%; } + + .circular-progress { + width: 135px; + height: 135px; + } } /* Small devices (landscape phones, 576px and up) */ @media only screen and (max-width: 576px) { + .circular-progress { + width: 150px; + height: 150px; + } + + .circular-progress .circular-progress-value { + font-size: 1rem; + } } /* iPhoneX, iPhone 6,7,8 */ @@ -513,4 +526,12 @@ /* iPhone 5 or before */ @media only screen and (max-width: 320px) { + .col-6 { + flex: auto; + max-width: 100%; + } + + .social-link { + flex-wrap: wrap; + } }