fix(admin): hide users filter toggle on desktop
The toggle carried both .admin-btn and .admin-users-filter-toggle, which tied on specificity with the base button display rule and kept the button visible on desktop. Scope the show/hide rules to .admin-btn.admin-users-filter-toggle so it only appears on mobile.
This commit is contained in:
@@ -595,7 +595,7 @@
|
||||
min-width: 82px;
|
||||
}
|
||||
|
||||
:global(.admin-users-filter-toggle) {
|
||||
:global(.admin-btn.admin-users-filter-toggle) {
|
||||
display: none;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
@@ -846,7 +846,7 @@
|
||||
padding-inline: 10px;
|
||||
}
|
||||
|
||||
:global(.admin-users-filter-toggle) {
|
||||
:global(.admin-btn.admin-users-filter-toggle) {
|
||||
display: inline-flex;
|
||||
min-width: 38px;
|
||||
padding-inline: 10px;
|
||||
|
||||
Reference in New Issue
Block a user