@citizenplane/pimp 18.9.33 → 18.9.34
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/pimp.es.js +1 -1
- package/dist/pimp.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/CpTableFooter.vue +8 -8
package/package.json
CHANGED
|
@@ -97,7 +97,8 @@ const pageLastResultIndex = computed(() => {
|
|
|
97
97
|
|
|
98
98
|
<style scoped lang="scss">
|
|
99
99
|
.cpTableFooter {
|
|
100
|
-
|
|
100
|
+
z-index: auto;
|
|
101
|
+
padding: var(--cp-spacing-xl) var(--cp-spacing-lg) 0;
|
|
101
102
|
|
|
102
103
|
&__loader {
|
|
103
104
|
display: inline-flex;
|
|
@@ -109,11 +110,11 @@ const pageLastResultIndex = computed(() => {
|
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
&__desktop {
|
|
112
|
-
display:
|
|
113
|
+
display: flex;
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
&__mobile {
|
|
116
|
-
display:
|
|
117
|
+
display: none;
|
|
117
118
|
margin-block: var(--cp-spacing-lg);
|
|
118
119
|
|
|
119
120
|
.cpTableFooter__loader {
|
|
@@ -123,17 +124,16 @@ const pageLastResultIndex = computed(() => {
|
|
|
123
124
|
}
|
|
124
125
|
}
|
|
125
126
|
|
|
126
|
-
@media (
|
|
127
|
+
@media (max-width: 768px) {
|
|
127
128
|
.cpTableFooter {
|
|
128
|
-
|
|
129
|
-
padding: var(--cp-spacing-xl) var(--cp-spacing-lg) 0;
|
|
129
|
+
padding: 0 var(--cp-spacing-lg) 0;
|
|
130
130
|
|
|
131
131
|
&__desktop {
|
|
132
|
-
display:
|
|
132
|
+
display: none;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
&__mobile {
|
|
136
|
-
display:
|
|
136
|
+
display: flex;
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
}
|