@citizenplane/pimp 18.9.24 → 18.9.26
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/dist/components/CpTableFooter.vue.d.ts.map +1 -1
- package/dist/components/CpTableFooterMobile.vue.d.ts.map +1 -1
- package/dist/pimp.es.js +2 -2
- package/dist/pimp.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/CpTableFooter.vue +3 -1
- package/src/components/CpTableFooterMobile.vue +1 -2
package/package.json
CHANGED
|
@@ -97,6 +97,8 @@ const pageLastResultIndex = computed(() => {
|
|
|
97
97
|
|
|
98
98
|
<style scoped lang="scss">
|
|
99
99
|
.cpTableFooter {
|
|
100
|
+
padding: 0 var(--cp-spacing-xl) 0;
|
|
101
|
+
|
|
100
102
|
&__loader {
|
|
101
103
|
display: inline-flex;
|
|
102
104
|
align-items: center;
|
|
@@ -112,7 +114,7 @@ const pageLastResultIndex = computed(() => {
|
|
|
112
114
|
|
|
113
115
|
&__mobile {
|
|
114
116
|
display: flex;
|
|
115
|
-
margin-
|
|
117
|
+
margin-block: var(--cp-spacing-lg);
|
|
116
118
|
|
|
117
119
|
.cpTableFooter__loader {
|
|
118
120
|
font-size: var(--cp-text-size-xs);
|
|
@@ -47,11 +47,10 @@ const emit = defineEmits<Emits>()
|
|
|
47
47
|
|
|
48
48
|
<style scoped lang="scss">
|
|
49
49
|
.cpTableFooterMobile {
|
|
50
|
-
z-index: 3;
|
|
51
50
|
display: flex;
|
|
52
51
|
align-items: center;
|
|
53
52
|
justify-content: space-between;
|
|
54
|
-
padding: var(--cp-spacing-
|
|
53
|
+
padding: var(--cp-spacing-lg) var(--cp-spacing-xl);
|
|
55
54
|
border-radius: var(--cp-radius-md);
|
|
56
55
|
background: var(--cp-background-primary);
|
|
57
56
|
box-shadow: var(--cp-shadows-overlay);
|