From 0ac46030fe1d3ca117d5a27438ff704937c02bf4 Mon Sep 17 00:00:00 2001 From: Hugo Nouts <hnouts@grandlyon.com> Date: Fri, 29 May 2020 16:59:56 +0200 Subject: [PATCH] fix height --- src/styles/base/_layout.scss | 8 ++++++-- src/styles/components/_oauth.scss | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/styles/base/_layout.scss b/src/styles/base/_layout.scss index e3665c494..96c979793 100644 --- a/src/styles/base/_layout.scss +++ b/src/styles/base/_layout.scss @@ -126,12 +126,16 @@ body { background-color:rgba(18, 18, 18, 0.7); position: absolute; - padding: 1.5rem 1rem 1rem 0rem; + padding: 0rem 1rem 0rem 0rem; z-index: 1; display: flex; justify-content: center; flex-direction: column; - height: 50%; + @media #{$large-phone} { + height: 26.5rem; + } + height: 34.5rem; + .cta-box-header { text-align: center; font-weight: bold; diff --git a/src/styles/components/_oauth.scss b/src/styles/components/_oauth.scss index 7e305641f..6e85346fa 100644 --- a/src/styles/components/_oauth.scss +++ b/src/styles/components/_oauth.scss @@ -12,5 +12,6 @@ display: flex; flex-direction: column; align-items: flex-start; + text-align: left; } } \ No newline at end of file -- GitLab