@bagelink/vue 0.0.511 → 0.0.518

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.
@@ -1,12 +1,12 @@
1
1
  <script setup lang="ts">
2
- import { Icon } from '@bagelink/vue'
2
+ import { Icon, type MaterialIcons } from '@bagelink/vue'
3
3
  import { nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue'
4
4
  import { useTabs } from './tabsManager'
5
5
 
6
6
  interface TabType {
7
7
  id?: string
8
8
  label?: string
9
- icon?: string
9
+ icon?: MaterialIcons
10
10
  }
11
11
 
12
12
  const props = defineProps<{
@@ -37,7 +37,7 @@ body {
37
37
  min-height: 100%;
38
38
  background-color: var(--bgl-bg);
39
39
  font-family: var(--bgl-font);
40
- font-size: 18px;
40
+ font-size: 16px;
41
41
  font-weight: 400;
42
42
  line-height: 1.65;
43
43
  width: auto;
@@ -127,6 +127,20 @@
127
127
  inset-inline-end: 0px;
128
128
  }
129
129
 
130
+ .position-bottom-center {
131
+ position: absolute;
132
+ bottom: 0px;
133
+ inset-inline-start: 0px;
134
+ inset-inline-end: 0px;
135
+ }
136
+
137
+ .position-center {
138
+ position: absolute;
139
+ top: 0px;
140
+ inset-inline-start: 0px;
141
+ inset-inline-end: 0px;
142
+ }
143
+
130
144
  .positioned-full,
131
145
  .p-all {
132
146
  top: 0;
@@ -146,6 +146,20 @@
146
146
  inset-inline-end: 0px;
147
147
  }
148
148
 
149
+ .m_position-bottom-center {
150
+ position: absolute;
151
+ bottom: 0px;
152
+ inset-inline-start: 0px;
153
+ inset-inline-end: 0px;
154
+ }
155
+
156
+ .m_position-center {
157
+ position: absolute;
158
+ top: 0px;
159
+ inset-inline-start: 0px;
160
+ inset-inline-end: 0px;
161
+ }
162
+
149
163
  .m_positioned-full {
150
164
  top: 0;
151
165
  bottom: 0;
@@ -3,13 +3,11 @@
3
3
  height: 0.5rem;
4
4
  }
5
5
 
6
- ::-webkit-scrollbar-track {
7
- /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
8
- }
6
+ ::-webkit-scrollbar-track {}
9
7
 
10
8
  ::-webkit-scrollbar-thumb {
11
9
  background-color: var(--bgl-gray);
12
- border-radius: 5px;
10
+ border-radius: 12px;
13
11
  }
14
12
 
15
13
  ::-webkit-scrollbar-corner {