Add settings page (#273)

* Add settings page

* Add 'soon' pill and logout

* Refactor components and layout

* Begin improving mobile display

* Add stories and refactor
This commit is contained in:
Félix Malfait
2023-06-13 17:10:57 +02:00
committed by GitHub
parent c20fd458ae
commit b9c41a1dcd
28 changed files with 683 additions and 240 deletions

View File

@ -13,7 +13,9 @@ const commonTheme = {
iconSizeMedium: '1.08rem',
iconSizeLarge: '1.23rem',
fontWeightBold: 500,
fontWeightMedium: 500,
fontWeightSemibold: 600,
fontWeightBold: 700,
fontFamily: 'Inter, sans-serif',
lineHeight: '150%',
@ -138,7 +140,7 @@ export const textInputStyle = (props: any) =>
&::-webkit-input-placeholder {
font-family: ${props.theme.fontFamily};
color: ${props.theme.text30};
font-weight: ${props.theme.fontWeightBold};
font-weight: ${props.theme.fontWeightMedium};
}
`;