mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 12:13:08 +00:00
Adjust confirm button
This commit is contained in:
parent
f946001f21
commit
5d2c2d3eb0
2 changed files with 7 additions and 6 deletions
|
@ -9,7 +9,10 @@
|
|||
:class="['modal-content', { large, confirm, padded, dark: darkModeEnabled }]"
|
||||
@click.stop
|
||||
>
|
||||
<button class="small filled close-button" @click="close">
|
||||
<button
|
||||
:class="[{'info': darkModeEnabled, accent: !darkModeEnabled}, 'small', 'close-button']"
|
||||
@click="close"
|
||||
>
|
||||
<i class="fas fa-times" />
|
||||
</button>
|
||||
|
||||
|
@ -194,15 +197,12 @@ header {
|
|||
.close-button {
|
||||
display: none;
|
||||
position: fixed;
|
||||
right: 12px;
|
||||
top: $gp / 2;
|
||||
right: $gp / 2;
|
||||
align-items: center;
|
||||
color: $color-dark-gray;
|
||||
z-index: 99999;
|
||||
padding: $gp;
|
||||
|
||||
@media($small) {
|
||||
display: flex;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
:title="$t('tags.applyTag')"
|
||||
:message="$t('tags.useTags')"
|
||||
padded
|
||||
confirm
|
||||
>
|
||||
<div slot="content">
|
||||
<div
|
||||
|
|
Loading…
Reference in a new issue