Skip to content

Commit

Permalink
Update LocalizationChangePopup.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppetm committed Dec 31, 2023
1 parent b5bcc9a commit 630b022
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Atoms/LocalizationChangePopup.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Text, useTheme, PrimaryButton, DefaultButton } from '@fluentui/react';
import { bold, semibold } from '../../services/Fonts';
import { semibold } from '../../services/Fonts';
import { useState, useEffect, useContext, CSSProperties } from 'react';
import { useCookies } from 'react-cookie';
import { addDays } from 'services/Utils';
Expand All @@ -16,7 +16,7 @@ const LocalizationChangePopup = () => {
width: '100%',
bottom: 0,
gap: 20,
backgroundColor: theme.palette.white,
backgroundColor: theme.palette.neutralLight,
borderTop: `1px solid ${theme.palette.neutralQuaternary}`,
padding: '20px 15px'
};
Expand Down Expand Up @@ -46,7 +46,7 @@ const LocalizationChangePopup = () => {
<div style={localizationPopup}>
<div className="d-flex flex-column justify-content-between" style={{ gap: 15 }}>
<div className="d-flex flex-column" style={{ gap: 5 }}>
<Text variant="large" block styles={bold}>You don't speak Italian?</Text>
<Text variant="large" block styles={semibold}>You don't speak Italian?</Text>
</div>

<div className="d-flex flex-row" style={{ gap: 15 }}>
Expand Down

0 comments on commit 630b022

Please sign in to comment.