@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.15.0-beta.1",
4
+ "version": "3.15.0-beta.2",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "dist/asteroid.cjs.min.js",
@@ -37,7 +37,7 @@
37
37
  </q-item-section>
38
38
 
39
39
  <q-item-section>
40
- Editar
40
+ Perfil
41
41
  </q-item-section>
42
42
  </q-item>
43
43
 
@@ -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 {
@@ -5,5 +5,6 @@
5
5
  @import './fonts';
6
6
  @import './line-height';
7
7
  @import './opacity';
8
+ @import './scroll';
8
9
  @import './text';
9
10
  @import './unset';
@@ -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
+ }