Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed font-size for user migration pages #5141

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions src/script/page/migration/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@ export const termsSubHeaderCss: CSSObject = {
};

export const termsContentHeaderCss: CSSObject = {
fontSize: '1.25rem',
marginBottom: '1rem',
fontSize: '1rem',
display: 'block',
[media[QueryKeys.TABLET_DOWN]]: {
fontSize: '1rem',
},
};

export const termsListCss: CSSObject = {
Expand All @@ -97,11 +94,8 @@ export const termsListCss: CSSObject = {
};

export const termsListItemCss: CSSObject = {
fontSize: '1.25rem',
lineHeight: '1.75rem',
[media[QueryKeys.TABLET_DOWN]]: {
fontSize: '1rem',
},
fontSize: '1rem',
};

export const termsContentWarningBox: CSSObject = {
Expand All @@ -113,11 +107,8 @@ export const termsContentWarningBox: CSSObject = {
margin: '0 2rem',
};
export const termsContentWarningBoxContent: CSSObject = {
fontSize: '1.25rem',
lineHeight: '1.75rem',
[media[QueryKeys.TABLET_DOWN]]: {
fontSize: '1rem',
},
fontSize: '1rem',
};

export const termsContentBlueBox: CSSObject = {
Expand All @@ -130,12 +121,9 @@ export const termsContentBlueBox: CSSObject = {

export const termsContentBlueBoxContent: CSSObject = {
marginLeft: '1.5rem',
fontSize: '1.25rem',
fontSize: '1rem',
lineHeight: '1.75rem',
textTransform: 'none',
[media[QueryKeys.TABLET_DOWN]]: {
fontSize: '1rem',
},
};

export const forgotPasswordCss: CSSObject = {
Expand Down
Loading