Fixed the css of the div

This commit is contained in:
0amirk 2023-10-02 22:11:05 +05:30
parent fd5d5c692e
commit b2b6d8535e
2 changed files with 3 additions and 1 deletions

View file

@ -22,7 +22,7 @@ export function WebsiteDateFilter({ websiteId }) {
}; };
return ( return (
<Flexbox justifyContent="center" gap={10}> <Flexbox justifyContent="center" gap={10} wrap="wrap">
{value !== 'all' && selectedUnit && ( {value !== 'all' && selectedUnit && (
<Flexbox justifyContent="center" className={styles.buttons}> <Flexbox justifyContent="center" className={styles.buttons}>
<Button onClick={() => handleIncrement(1)}> <Button onClick={() => handleIncrement(1)}>

View file

@ -20,6 +20,8 @@
@media only screen and (max-width: 1200px) { @media only screen and (max-width: 1200px) {
.actions { .actions {
margin-top: 40px; margin-top: 40px;
flex-wrap: wrap;
justify-content: flex-start;
} }
} }