bge-ui 1.2.2 → 1.2.3
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/style.css +4 -1
- package/package.json +1 -1
- package/src/slider/index.vue +4 -1
package/dist/style.css
CHANGED
|
@@ -1458,7 +1458,7 @@ to {
|
|
|
1458
1458
|
width: 14px;
|
|
1459
1459
|
position: absolute;
|
|
1460
1460
|
z-index: 100;
|
|
1461
|
-
top: -
|
|
1461
|
+
top: -6px;
|
|
1462
1462
|
transform: translateX(-50%);
|
|
1463
1463
|
background-color: transparent;
|
|
1464
1464
|
text-align: center;
|
|
@@ -1467,6 +1467,9 @@ to {
|
|
|
1467
1467
|
-ms-user-select: none;
|
|
1468
1468
|
user-select: none;
|
|
1469
1469
|
line-height: normal;
|
|
1470
|
+
display: flex;
|
|
1471
|
+
align-items: center;
|
|
1472
|
+
justify-content: center;
|
|
1470
1473
|
}
|
|
1471
1474
|
.bge-slider .bge-slider__runway .slider-button-wrapper .slider-button {
|
|
1472
1475
|
background: var(--bg-slider-selected, #4F5C71);
|
package/package.json
CHANGED
package/src/slider/index.vue
CHANGED
|
@@ -193,7 +193,7 @@ watch(() => props.modelValue, (val: number) => {
|
|
|
193
193
|
width: 14px;
|
|
194
194
|
position: absolute;
|
|
195
195
|
z-index: 100;
|
|
196
|
-
top: -
|
|
196
|
+
top: -6px;
|
|
197
197
|
transform: translateX(-50%);
|
|
198
198
|
background-color: transparent;
|
|
199
199
|
text-align: center;
|
|
@@ -202,6 +202,9 @@ watch(() => props.modelValue, (val: number) => {
|
|
|
202
202
|
-ms-user-select: none;
|
|
203
203
|
user-select: none;
|
|
204
204
|
line-height: normal;
|
|
205
|
+
display: flex;
|
|
206
|
+
align-items: center;
|
|
207
|
+
justify-content: center;
|
|
205
208
|
|
|
206
209
|
.slider-button {
|
|
207
210
|
// border: solid 4px rgba(255, 214, 51, 0.16);
|