Skip to content
Snippets Groups Projects
Commit 716150f2 authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Fix moderation dropdown menu width

parent fbceb013
No related branches found
No related tags found
No related merge requests found
......@@ -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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment