bge-ui 1.7.7 → 1.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/style.css +5 -5
- package/package.json +1 -1
- package/src/drawer/index.vue +4 -4
package/dist/index.js
CHANGED
|
@@ -23143,7 +23143,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
23143
23143
|
}, ["stop"]))
|
|
23144
23144
|
}, [
|
|
23145
23145
|
createElementVNode("div", {
|
|
23146
|
-
class: "
|
|
23146
|
+
class: "drawer-close-container",
|
|
23147
23147
|
onClick: close
|
|
23148
23148
|
}, [
|
|
23149
23149
|
createVNode(_sfc_main$1L, { class: "font-24" })
|
package/dist/style.css
CHANGED
|
@@ -1819,7 +1819,7 @@ to {
|
|
|
1819
1819
|
height: 100%;
|
|
1820
1820
|
padding-top: 64px;
|
|
1821
1821
|
}
|
|
1822
|
-
.bge-drawer .
|
|
1822
|
+
.bge-drawer .drawer-close-container {
|
|
1823
1823
|
position: absolute;
|
|
1824
1824
|
right: 12px;
|
|
1825
1825
|
top: 12px;
|
|
@@ -1828,13 +1828,13 @@ to {
|
|
|
1828
1828
|
display: flex;
|
|
1829
1829
|
justify-content: center;
|
|
1830
1830
|
align-items: center;
|
|
1831
|
-
color: var(--
|
|
1831
|
+
color: var(--tc-primary);
|
|
1832
1832
|
}
|
|
1833
|
-
.bge-drawer .
|
|
1833
|
+
.bge-drawer .drawer-close-container svg {
|
|
1834
1834
|
font-size: 24px !important;
|
|
1835
1835
|
}
|
|
1836
|
-
.bge-drawer .
|
|
1837
|
-
color: var(--
|
|
1836
|
+
.bge-drawer .drawer-close-container:hover {
|
|
1837
|
+
color: var(--tc-primary);
|
|
1838
1838
|
}
|
|
1839
1839
|
.bge-drawer__body {
|
|
1840
1840
|
padding: 0 12px;
|
package/package.json
CHANGED
package/src/drawer/index.vue
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@before-leave="close"
|
|
7
7
|
>
|
|
8
8
|
<div class="bge-drawer" v-if="visible" @click.stop="">
|
|
9
|
-
<div class="
|
|
9
|
+
<div class="drawer-close-container" @click="close">
|
|
10
10
|
<MonoClose class="font-24" />
|
|
11
11
|
</div>
|
|
12
12
|
<div class="bge-drawer__body" ref="DialogBody">
|
|
@@ -94,7 +94,7 @@ const emits = defineEmits([
|
|
|
94
94
|
height: 100%;
|
|
95
95
|
padding-top: 64px;
|
|
96
96
|
|
|
97
|
-
.
|
|
97
|
+
.drawer-close-container {
|
|
98
98
|
position: absolute;
|
|
99
99
|
right: 12px;
|
|
100
100
|
top: 12px;
|
|
@@ -103,14 +103,14 @@ const emits = defineEmits([
|
|
|
103
103
|
display: flex;
|
|
104
104
|
justify-content: center;
|
|
105
105
|
align-items: center;
|
|
106
|
-
color: var(--
|
|
106
|
+
color: var(--tc-primary);
|
|
107
107
|
|
|
108
108
|
svg {
|
|
109
109
|
font-size: 24px !important;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
&:hover {
|
|
113
|
-
color: var(--
|
|
113
|
+
color: var(--tc-primary);
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
}
|