forked from AkkomaGang/admin-fe
Fix moderation dropdown menu width
This commit is contained in:
parent
fc4a48c1d1
commit
a99fe3833a
1 changed files with 7 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
</span>
|
||||
</el-button>
|
||||
</div>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-menu slot="dropdown" class="moderation-dropdown-menu">
|
||||
<el-dropdown-item
|
||||
class="actor-type-dropdown">
|
||||
<el-select v-model="actorType" :placeholder="$t('userProfile.actorType')" class="actor-type-select">
|
||||
|
@ -318,9 +318,15 @@ export default {
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.moderation-dropdown-menu {
|
||||
width: 350px;
|
||||
}
|
||||
@media only screen and (max-width:480px) {
|
||||
.moderate-user-button {
|
||||
width: 100%
|
||||
}
|
||||
.moderation-dropdown-menu {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue