diff --git a/packages/ui/src/assets/icons/radio-button-icon.svg b/packages/ui/src/assets/icons/radio-button-icon.svg
deleted file mode 100644
index 8d16f765a..000000000
--- a/packages/ui/src/assets/icons/radio-button-icon.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/packages/ui/src/components/BrandingHeader/index.module.scss b/packages/ui/src/components/BrandingHeader/index.module.scss
index f8e2a1a15..7c397d4c2 100644
--- a/packages/ui/src/components/BrandingHeader/index.module.scss
+++ b/packages/ui/src/components/BrandingHeader/index.module.scss
@@ -1,6 +1,6 @@
@use '@/scss/underscore' as _;
-$logo-height: 50px;
+$logo-height: 40px;
.container {
width: 100%;
diff --git a/packages/ui/src/components/Checkbox/index.tsx b/packages/ui/src/components/Checkbox/index.tsx
index cab79df99..9ad3f50d3 100644
--- a/packages/ui/src/components/Checkbox/index.tsx
+++ b/packages/ui/src/components/Checkbox/index.tsx
@@ -2,21 +2,16 @@ import type { InputHTMLAttributes, Ref } from 'react';
import { forwardRef } from 'react';
import CheckBox from '@/assets/icons/checkbox-icon.svg';
-import RadioButton from '@/assets/icons/radio-button-icon.svg';
-import usePlatform from '@/hooks/use-platform';
import * as styles from './index.module.scss';
type Props = Omit, 'type'>;
const Checkbox = ({ disabled, ...rest }: Props, ref: Ref) => {
- const { isMobile } = usePlatform();
- const Icon = isMobile ? RadioButton : CheckBox;
-
return (
-
+
);
};
diff --git a/packages/ui/src/components/Input/phoneInput.module.scss b/packages/ui/src/components/Input/phoneInput.module.scss
index 68ac5b054..14dc35cc7 100644
--- a/packages/ui/src/components/Input/phoneInput.module.scss
+++ b/packages/ui/src/components/Input/phoneInput.module.scss
@@ -35,7 +35,7 @@
}
> svg {
- color: var(--color-brand-default);
+ color: var(--color-type-secondary);
margin-left: _.unit(1);
width: 16px;
height: 16px;
diff --git a/packages/ui/src/components/TextLink/index.module.scss b/packages/ui/src/components/TextLink/index.module.scss
index 988a20df7..755fc5603 100644
--- a/packages/ui/src/components/TextLink/index.module.scss
+++ b/packages/ui/src/components/TextLink/index.module.scss
@@ -11,9 +11,13 @@
}
&.primary {
+ font: var(--font-label-2);
+ }
+
+ &.primary,
+ &.inlinePrimary {
color: var(--color-brand-default);
text-decoration: none;
- font: var(--font-label-2);
&:active {
color: var(--color-brand-hover);
@@ -29,11 +33,13 @@
:global(body.desktop) {
.link {
- &.primary:hover {
+ &.primary:hover,
+ &.inlinePrimary:hover {
color: var(--color-brand-hover);
}
- &.primary:focus-visible {
+ &.primary:focus-visible,
+ &.inlinePrimary:focus-visible {
outline: _.border(var(--color-overlay-brand-focused));
}
diff --git a/packages/ui/src/components/TextLink/index.tsx b/packages/ui/src/components/TextLink/index.tsx
index caaf55e21..8c8299033 100644
--- a/packages/ui/src/components/TextLink/index.tsx
+++ b/packages/ui/src/components/TextLink/index.tsx
@@ -12,7 +12,7 @@ export type Props = AnchorHTMLAttributes & {
children?: ReactNode;
text?: TFuncKey;
icon?: ReactNode;
- type?: 'primary' | 'secondary';
+ type?: 'primary' | 'secondary' | 'inlinePrimary';
} & Partial;
const TextLink = ({ className, children, text, icon, type = 'primary', to, ...rest }: Props) => {
diff --git a/packages/ui/src/containers/AppNotification/index.module.scss b/packages/ui/src/containers/AppNotification/index.module.scss
index 28ba5ba67..c0365eeac 100644
--- a/packages/ui/src/containers/AppNotification/index.module.scss
+++ b/packages/ui/src/containers/AppNotification/index.module.scss
@@ -10,6 +10,7 @@
top: _.unit(6);
left: _.unit(5);
right: _.unit(5);
+ margin: 0 auto;
}
}
diff --git a/packages/ui/src/containers/OtherMethodsLink/index.tsx b/packages/ui/src/containers/OtherMethodsLink/index.tsx
index d07374f67..f3237724e 100644
--- a/packages/ui/src/containers/OtherMethodsLink/index.tsx
+++ b/packages/ui/src/containers/OtherMethodsLink/index.tsx
@@ -37,6 +37,7 @@ const OtherMethodsLink = ({ methods, template, search, flow, className }: Props)
diff --git a/packages/ui/src/containers/TermsOfUse/TermsOfUseConfirmModalContent/index.tsx b/packages/ui/src/containers/TermsOfUse/TermsOfUseConfirmModalContent/index.tsx
index 7170e9237..bbf259f50 100644
--- a/packages/ui/src/containers/TermsOfUse/TermsOfUseConfirmModalContent/index.tsx
+++ b/packages/ui/src/containers/TermsOfUse/TermsOfUseConfirmModalContent/index.tsx
@@ -32,6 +32,7 @@ const TermsOfUseConfirmModalContent = ({ cancel }: ModalContentRenderProps) => {
link: (
diff --git a/packages/ui/src/containers/VerificationCode/index.module.scss b/packages/ui/src/containers/VerificationCode/index.module.scss
index 3e3712f10..c09addda7 100644
--- a/packages/ui/src/containers/VerificationCode/index.module.scss
+++ b/packages/ui/src/containers/VerificationCode/index.module.scss
@@ -17,10 +17,6 @@
.message {
font: var(--font-body-2);
-
- > span {
- color: var(--color-brand-default);
- }
}
.message,