Skip to content

Commit

Permalink
filters css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaOlas committed May 27, 2024
1 parent 659a3c5 commit 31b7ab8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/admin/dashboard-statistics/CountryStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ const CountryStats = () => {
return (
<>
<div className={styles.filtersContainer}>
<PhaseDropdown />
<CountriesDropdown />
<div className={styles.phaseFilter}>
<PhaseDropdown />
</div>
<div className={styles.countryFilter}>
<CountriesDropdown />
</div>
</div>
<h1>Statut: Observateur</h1>
<div className={styles.chartsContainer}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@

.filtersContainer {
display: flex;
padding-bottom: 5%;
}

.phaseFilter {
flex: 1;
}

.countryFilter {
flex: 2;
}

.horizontalBars {
Expand Down

0 comments on commit 31b7ab8

Please sign in to comment.