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>
|
</span>
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown" class="moderation-dropdown-menu">
|
||||||
<el-dropdown-item
|
<el-dropdown-item
|
||||||
class="actor-type-dropdown">
|
class="actor-type-dropdown">
|
||||||
<el-select v-model="actorType" :placeholder="$t('userProfile.actorType')" class="actor-type-select">
|
<el-select v-model="actorType" :placeholder="$t('userProfile.actorType')" class="actor-type-select">
|
||||||
|
@ -318,9 +318,15 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
.moderation-dropdown-menu {
|
||||||
|
width: 350px;
|
||||||
|
}
|
||||||
@media only screen and (max-width:480px) {
|
@media only screen and (max-width:480px) {
|
||||||
.moderate-user-button {
|
.moderate-user-button {
|
||||||
width: 100%
|
width: 100%
|
||||||
}
|
}
|
||||||
|
.moderation-dropdown-menu {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue