quasar-ui-danx 0.2.23 → 0.2.25

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,10 @@
1
- import { ref, Ref, UnwrapRef } from "vue";
1
+ import { ref, Ref } from "vue";
2
2
 
3
3
  interface RequestOptions {
4
4
  baseUrl: string;
5
5
  }
6
6
 
7
- const requestOptions: Ref<UnwrapRef<RequestOptions>> = ref({
7
+ const requestOptions: Ref<RequestOptions> = ref({
8
8
  baseUrl: ""
9
9
  });
10
10
  /**
@@ -1,3 +1,5 @@
1
1
  @tailwind base;
2
2
  @tailwind components;
3
3
  @tailwind utilities;
4
+
5
+ @import 'quasar-reset';
@@ -0,0 +1,28 @@
1
+ .q-tab-panels {
2
+ overflow: visible;
3
+
4
+ .q-panel {
5
+ overflow: visible;
6
+
7
+ &.scroll {
8
+ overflow: auto;
9
+ }
10
+
11
+ .q-tab-panel {
12
+ padding: 0;
13
+ }
14
+ }
15
+
16
+ &.overflow-y-auto {
17
+ overflow-y: auto;
18
+ }
19
+ }
20
+
21
+ .q-toolbar {
22
+ min-height: 0;
23
+ padding: 0;
24
+ }
25
+
26
+ .q-notification__actions {
27
+ color: inherit;
28
+ }