Fix style for advanced filter
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 48s

This commit is contained in:
2025-04-07 21:18:29 +02:00
parent 47c1e91535
commit 6236ad3db3
5 changed files with 17 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
}
.duplicate {
display: flex;
display: none;
flex-direction: column;
gap: 10px;
}
@@ -20,3 +20,9 @@
height: 24px;
align-content: center
}
@media screen and (max-width: 1000px) {
.duplicate {
display: flex;
}
}

View File

@@ -43,6 +43,7 @@
<div class="select-container">
<MultipleSelectList TItem="string"
Items="Plateforms"
Placeholder="@ResourcesKey.Platforms"
@bind-Values=GameFilterParams.Plateforms
Theme="SelectListTheme.Filter" />
</div>
@@ -50,6 +51,7 @@
<div class="select-container">
<MultipleSelectList TItem="string"
Items="Genres"
Placeholder="@ResourcesKey.Genres"
@bind-Values=GameFilterParams.Genres
Theme="SelectListTheme.Filter" />
</div>

View File

@@ -1,4 +1,5 @@
.container {
margin-top: 20px;
justify-content: space-between;
display: flex;
flex-direction: row;