rayyy-vue-table-components 1.2.31 → 1.2.32
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
|
@@ -20,7 +20,7 @@ const props = withDefaults(
|
|
|
20
20
|
<template>
|
|
21
21
|
<function-header :title="props.title" :showBack="props.showBack" :depth="props.depth" />
|
|
22
22
|
|
|
23
|
-
<el-scrollbar
|
|
23
|
+
<el-scrollbar class="panel-scrollbar">
|
|
24
24
|
<div v-if="$slots.searchBar" class="px-4 pt-1.5">
|
|
25
25
|
<slot name="searchBar" />
|
|
26
26
|
</div>
|
|
@@ -35,3 +35,11 @@ const props = withDefaults(
|
|
|
35
35
|
<slot name="footer" />
|
|
36
36
|
</div>
|
|
37
37
|
</template>
|
|
38
|
+
|
|
39
|
+
<style scoped>
|
|
40
|
+
.panel-scrollbar {
|
|
41
|
+
max-height: calc(100vh - 160px);
|
|
42
|
+
max-width: 100vw;
|
|
43
|
+
@apply overflow-auto;
|
|
44
|
+
}
|
|
45
|
+
</style>
|