Fix style for advanced filter
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 48s
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 48s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
.container {
|
||||
margin-top: 20px;
|
||||
justify-content: space-between;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
Reference in New Issue
Block a user