@bildvitta/quasar-ui-asteroid 3.15.0-beta.1 → 3.15.0-beta.2
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="qas-grabbable relative-position">
|
|
3
3
|
<div
|
|
4
4
|
ref="grabContainer"
|
|
5
|
-
class="flex no-wrap qas-grabbable__container"
|
|
5
|
+
class="flex no-wrap qas-grabbable__container secondary-scroll"
|
|
6
6
|
:class="classes"
|
|
7
7
|
>
|
|
8
8
|
<slot />
|
|
@@ -136,25 +136,6 @@ onBeforeUnmount(() => {
|
|
|
136
136
|
-webkit-overflow-scrolling: touch;
|
|
137
137
|
-ms-overflow-style: none;
|
|
138
138
|
overflow-x: auto;
|
|
139
|
-
scrollbar-color: $blue-grey-3 transparent;
|
|
140
|
-
|
|
141
|
-
&::-webkit-scrollbar {
|
|
142
|
-
height: 12px;
|
|
143
|
-
background-color: transparent;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
&::-webkit-scrollbar-track {
|
|
147
|
-
background-color: transparent;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
&::-webkit-scrollbar-thumb {
|
|
151
|
-
background-color: $blue-grey-3;
|
|
152
|
-
border-radius: var(--qas-generic-border-radius);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
&::-webkit-scrollbar-thumb:hover {
|
|
156
|
-
background-color: $blue-grey-4;
|
|
157
|
-
}
|
|
158
139
|
|
|
159
140
|
&::before,
|
|
160
141
|
&::after {
|
package/src/css/utils/index.scss
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.secondary-scroll {
|
|
2
|
+
scrollbar-color: $blue-grey-3 transparent;
|
|
3
|
+
|
|
4
|
+
&::-webkit-scrollbar {
|
|
5
|
+
height: 12px;
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&::-webkit-scrollbar-track {
|
|
10
|
+
background-color: transparent;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&::-webkit-scrollbar-thumb {
|
|
14
|
+
background-color: $blue-grey-3;
|
|
15
|
+
border-radius: var(--qas-generic-border-radius);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
19
|
+
background-color: $blue-grey-4;
|
|
20
|
+
}
|
|
21
|
+
}
|