diff --git a/packages/ui/src/components/BrandingHeader/index.module.scss b/packages/ui/src/components/BrandingHeader/index.module.scss index a9b23272b..ea2db94d1 100644 --- a/packages/ui/src/components/BrandingHeader/index.module.scss +++ b/packages/ui/src/components/BrandingHeader/index.module.scss @@ -4,9 +4,6 @@ $logo-height: 60px; .container { width: 100%; - height: 15vh; - min-height: 92px; - max-height: 148px; @include _.flex-column; } @@ -14,13 +11,38 @@ $logo-height: 60px; height: $logo-height; width: auto; @include _.image-align-center; +} - &:not(:last-child) { + +:global(body.mobile) { + .container { + height: 15vh; + min-height: 92px; + max-height: 148px; + } + + .logo:not(:last-child) { margin-bottom: _.unit(2); } + + .headline { + font: var(--font-body); + color: var(--color-text); + } } -.headline { - font: var(--font-body); - color: var(--color-text); + +:global(body.desktop) { + .container { + height: 96px; + } + + .logo:not(:last-child) { + margin-bottom: _.unit(4); + } + + .headline { + font: var(--font-title-small); + color: var(--color-text); + } } diff --git a/packages/ui/src/components/Divider/index.module.scss b/packages/ui/src/components/Divider/index.module.scss index 7e2d9e7d5..c4ecb4d99 100644 --- a/packages/ui/src/components/Divider/index.module.scss +++ b/packages/ui/src/components/Divider/index.module.scss @@ -9,7 +9,7 @@ .line { flex: 1; height: 1px; - background: var(--color-border); + background: var(--color-divider); &:first-child { margin-right: _.unit(4); diff --git a/packages/ui/src/components/Input/PasswordInput.tsx b/packages/ui/src/components/Input/PasswordInput.tsx index f4c2f0c28..22920d53d 100644 --- a/packages/ui/src/components/Input/PasswordInput.tsx +++ b/packages/ui/src/components/Input/PasswordInput.tsx @@ -20,9 +20,7 @@ const PasswordInput = ({ className, value, error, onFocus, onBlur, ...rest }: Pr return (