fixed maxHeight for ServiceList parent Card as 50vh

This commit is contained in:
2025-10-11 22:17:49 +05:30
parent 081e3bf2b7
commit 2cdee4a028

View File

@@ -158,7 +158,7 @@ export function MobileLayout({
{selectedFeature.description}
</Typography>
</Box>
<ServiceList serviceList={selectedFeature.serviceList}/>
<ServiceList serviceList={selectedFeature.serviceList} />
</Card>
</Box>
);
@@ -247,9 +247,10 @@ export default function Services() {
variant="outlined"
sx={{
display: {xs: 'none', sm: 'flex'},
maxHeight: '50vh',
}}
>
<ServiceList serviceList={selectedFeature.serviceList}/>
<ServiceList serviceList={selectedFeature.serviceList} />
</Card>
</Box>
</Box>