@tplc/business 0.0.6 → 0.0.7
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.
|
@@ -108,7 +108,7 @@ withDefaults(defineProps<NanProps>(), {
|
|
|
108
108
|
contentColor: '#000000',
|
|
109
109
|
logoImg: '',
|
|
110
110
|
searchText: '搜索',
|
|
111
|
-
fixed:
|
|
111
|
+
fixed: false,
|
|
112
112
|
})
|
|
113
113
|
|
|
114
114
|
const paddingTop = computed(() => {
|
|
@@ -240,6 +240,12 @@ const paddingTop = computed(() => {
|
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
}
|
|
243
|
+
.fixed {
|
|
244
|
+
position: fixed;
|
|
245
|
+
z-index: 10;
|
|
246
|
+
top: 0;
|
|
247
|
+
left: 0;
|
|
248
|
+
}
|
|
243
249
|
|
|
244
250
|
.immersiveTop {
|
|
245
251
|
position: fixed;
|