forked from AkkomaGang/admin-fe
Specify styles for buttons with plus icons
This commit is contained in:
parent
c22ebd1bff
commit
cb47592525
1 changed files with 6 additions and 6 deletions
|
@ -9,8 +9,8 @@
|
|||
<el-input :placeholder="$t('users.search')" v-model="search" class="search" @input="handleDebounceSearchInput"/>
|
||||
</div>
|
||||
<div class="actions-container">
|
||||
<el-button class="actions-button create-account" @click="createAccountDialogOpen = true">
|
||||
<span>
|
||||
<el-button class="actions-button" @click="createAccountDialogOpen = true">
|
||||
<span class="create-account">
|
||||
<i class="el-icon-plus"/>
|
||||
{{ $t('users.createAccount') }}
|
||||
</span>
|
||||
|
@ -354,7 +354,7 @@ export default {
|
|||
cursor: pointer;
|
||||
color: #409EFF;
|
||||
}
|
||||
.el-icon-plus {
|
||||
.create-account > .el-icon-plus {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.password-reset-token {
|
||||
|
@ -402,14 +402,14 @@ only screen and (max-width: 760px),
|
|||
h1 {
|
||||
margin: 7px 10px 15px 10px;
|
||||
}
|
||||
.actions-button {
|
||||
width: 100%;
|
||||
}
|
||||
.actions-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0 10px 7px 10px
|
||||
}
|
||||
.create-account {
|
||||
width: 100%;
|
||||
}
|
||||
.el-icon-arrow-down {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue