Skip to content

Commit 2de0b12

Browse files
committed
some smaller changes to catalog filter design
1 parent 852fc6f commit 2de0b12

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/ui/screens/eligibilty-overview/EligibilityOverviewScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const EligibilityOverviewScreen = ({
6363
{featureFlags.bielefunke && atLeastOneWithMissingData() &&
6464
<RegularButton
6565
text={"Noch offene Ansprüche prüfen"}
66-
variant={'yellowContained'}
66+
variant={'blueContained'}
6767
link='/onboarding-welcome'
6868
onClick={doSetSelectedBenefits}
6969
/>

src/ui/screens/eligibilty-overview/components/EligibilityOverviewFilter.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const EligibilityOverviewFilter = ({ t, filterOptions, filters, onChangeFilters
4646
<HBox sx={{ gap: 4, flexWrap: 'wrap' }}>
4747
{Object.keys(filterOptions).length > 0 && (
4848
Object.keys(filterOptions).map((key, index) => (
49-
<FormControl key={index} size="small" sx={{ minWidth: 200 }}>
49+
<FormControl key={index} sx={{ minWidth: 200}}>
5050
<InputLabel id={`${key}-label`}>{t(`app.browseAll.filter.${key}`)}</InputLabel>
5151
<Select
5252
labelId={`${key}-label`}
@@ -55,6 +55,7 @@ const EligibilityOverviewFilter = ({ t, filterOptions, filters, onChangeFilters
5555
onChange={handleChange(key)}
5656
label={t(`app.browseAll.filter.${key}`)}
5757
renderValue={() => t(`app.browseAll.filter.${key}`)}
58+
sx={{ borderRadius: theme.shape.borderRadius }}
5859
>
5960
{filterOptions[key].map(item => (
6061
<MenuItem key={item.id} value={item.id}>

src/ui/screens/landing-page/sections/top-section/variants/LandingPageTopSectionWolfenbuettel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import RegularButton from "@/ui/shared-components/buttons/RegularButton";
55
import LandingPageSectionWrapper from "../../../components/LandingPageSectionWrapper";
66
import LandingPageTopSectionSharedVariant from "../components/LandingPageTopSectionSharedVariant";
77

8-
const LandingPageTopSectionWolfenbuettel = ({ runway }) => {
8+
const LandingPageTopSectionWolfenbuettel = () => {
99
const isDesktop = useStore((state) => state.isDesktop);
1010
const [loaded, setLoaded] = useState(false);
1111
const wolfenbuettelImage = `${process.env.PUBLIC_URL}/assets/images/landing-page/wolfenbuettel_image.svg`; // TODO

0 commit comments

Comments
 (0)