fix modal close button style
This commit is contained in:
parent
4e8cd1f2e8
commit
38a2fbf791
@ -24,6 +24,9 @@
|
|||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<b-modal v-model="showModal" title="New playlist">
|
<b-modal v-model="showModal" title="New playlist">
|
||||||
|
<template #modal-header-close>
|
||||||
|
<Icon icon="x" />
|
||||||
|
</template>
|
||||||
<b-form-group label="Name">
|
<b-form-group label="Name">
|
||||||
<b-form-input v-model="playlistName" type="text" />
|
<b-form-input v-model="playlistName" type="text" />
|
||||||
</b-form-group>
|
</b-form-group>
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<b-modal ok-title="Save" :visible="visible" @ok="confirm" @change="change">
|
<b-modal ok-title="Save" :visible="visible" @ok="confirm" @change="change">
|
||||||
|
<template #modal-header-close>
|
||||||
|
<Icon icon="x" />
|
||||||
|
</template>
|
||||||
<template #modal-title>
|
<template #modal-title>
|
||||||
<slot name="title" :item="copy">
|
<slot name="title" :item="copy">
|
||||||
{{ title }}
|
{{ title }}
|
||||||
|
@ -74,3 +74,8 @@ $enable-responsive-font-sizes: true;
|
|||||||
|
|
||||||
@import '~bootstrap';
|
@import '~bootstrap';
|
||||||
@import '~bootstrap-vue';
|
@import '~bootstrap-vue';
|
||||||
|
|
||||||
|
.modal-header .close {
|
||||||
|
color: $theme-text;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user