Skip to content

Commit

Permalink
formated Strange line on faq page podkrepi-bg#1818
Browse files Browse the repository at this point in the history
  • Loading branch information
iliyan90 committed May 27, 2024
1 parent f6ff171 commit 3703edc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/client/auth/profile/MyNotificationsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ const Root = styled('div')(({ theme }) => ({
alignItems: 'center',
padding: theme.spacing(0, 2),
},
[`& .${classes.statusBoxBtnStatus}`]:{
display:'flex',
[`& .${classes.statusBoxBtnStatus}`]: {
display: 'flex',
alignItems: 'center',
gap: 20,
flexWrap:'wrap',
flexWrap: 'wrap',
},
[`& .${classes.statusActive}`]: {
color: 'green',
Expand Down
6 changes: 5 additions & 1 deletion src/components/client/faq/VerticalTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ const VerticalTabs = ({ faqCategories }: Props) => {
: { borderColor: 'divider', mb: 4, width: '100%' }
return (
<Box sx={{ bgcolor: 'background.paper', display: 'flex', justifyContent: 'center', flex: 1 }}>
<TabList orientation="vertical" variant="scrollable" onChange={handleChange} sx={rightLineStyle}>
<TabList
orientation="vertical"
variant="scrollable"
onChange={handleChange}
sx={rightLineStyle}>
{faqCategories.map((category) => {
return <Tab key={category} value={category} label={t(`categories.${category}`)} />
})}
Expand Down

0 comments on commit 3703edc

Please sign in to comment.