refs #444 Set nowrap for domain name in side menu

This commit is contained in:
AkiraFukushima 2018-09-17 15:41:50 +09:00
parent ca047d8afd
commit 3eb47d2641
1 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,7 @@
</el-dropdown-menu>
</el-dropdown>
</div>
<span>{{ account.domain }}</span>
<span class="domain-name">{{ account.domain }}</span>
</div>
<div class="collapse">
<el-button type="text" class="release-collapse" @click="releaseCollapse" v-if="collapse" :title="$t('side_menu.expand')">
@ -168,6 +168,11 @@ export default {
.el-dropdown-link {
cursor: pointer;
}
.domain-name {
word-break: break-all;
white-space: nowrap;
}
}
.profile-narrow {