Skip to content

Commit

Permalink
style: uniform heading styles across application
Browse files Browse the repository at this point in the history
  • Loading branch information
HRemonen committed Jun 7, 2024
1 parent f2d1579 commit a01c504
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ const FeedbackResponse = ({ feedbackTarget }) => {
<>
<Typography
component="h2"
variant="h6"
sx={{
fontWeight: 'semibold',
fontSize: '1.5rem',
'@media print': { fontSize: '1.2rem' },
fontWeight: 'medium',
mb: '2rem',
}}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ import QuestionItem from './QuestionItem'
const QuestionSection = ({ title, count, children, ...props }) => (
<Box my="3rem" display="flex" flexDirection="column" rowGap="1rem" {...props}>
<Box display="flex" gap="1rem" mb="1rem" alignItems="center">
<Typography
component="h2"
sx={{ fontWeight: 'semibold', fontSize: '1.5rem', '@media print': { fontSize: '1.2rem' } }}
>
<Typography component="h2" variant="h6" sx={{ fontWeight: 'medium' }}>
{title}
</Typography>
<Chip label={count} variant="outlined" size="small" />
Expand Down

0 comments on commit a01c504

Please sign in to comment.