From 075bfb38ffcdec726509129e480ca15f2e69156c Mon Sep 17 00:00:00 2001 From: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> Date: Thu, 26 Dec 2019 00:59:57 +0530 Subject: [PATCH] fix: styles for certs until redirect fixed (#37885) * remove extra styling Co-authored-by: Oliver Eyton-Williams --- client/src/pages/certification.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/client/src/pages/certification.css b/client/src/pages/certification.css index 01f62379c6..8515534f14 100644 --- a/client/src/pages/certification.css +++ b/client/src/pages/certification.css @@ -230,3 +230,32 @@ font-size: 28px; } } + +@media screen and (max-width: 675px) { + .certification-namespaces.issue-date { + padding: 0; + border: 0; + } + + .certification-namespace header { + height: 190px; + } + + .certification-namespace h3 { + font-size: 15px; + } + + .certification-namespace h1 { + font-size: 17px; + } + + .certification-namespace h4 { + font-size: 15px; + margin-top: 20px; + } +} + +.certificate-outer-wrapper { + margin-top: calc(-1 * var(--header-height)); + background-color: #fff; +}