@saooti/octopus-sdk 30.0.28 → 30.0.29
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/README.md
CHANGED
|
@@ -525,4 +525,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
525
525
|
* 30.0.25 Css + Accessibilité
|
|
526
526
|
* 30.0.26 Css + Accessibilité
|
|
527
527
|
* 30.0.27 Top bar responsive
|
|
528
|
-
* 30.0.28 Limiter caractères des commentaires
|
|
528
|
+
* 30.0.28 Limiter caractères des commentaires
|
|
529
|
+
* 30.0.29 Pour podcastmaker sudPresse
|
package/package.json
CHANGED
|
@@ -257,31 +257,34 @@ export default defineComponent({
|
|
|
257
257
|
</script>
|
|
258
258
|
|
|
259
259
|
<style lang="scss">
|
|
260
|
-
.
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
260
|
+
.octopus-app{
|
|
261
|
+
.list-episode {
|
|
262
|
+
padding: 2rem 0rem 1rem !important;
|
|
263
|
+
@media (max-width: 450px) {
|
|
264
|
+
padding: 0.5rem 0rem 1rem !important;
|
|
265
|
+
}
|
|
266
|
+
h2 {
|
|
267
|
+
margin-bottom: 1rem;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
.element-list-inline.overflowScroll {
|
|
271
|
+
display: flex;
|
|
272
|
+
flex-wrap: wrap;
|
|
273
|
+
-webkit-overflow-scrolling: touch;
|
|
274
|
+
scroll-behavior: smooth;
|
|
275
|
+
padding-bottom: 1rem;
|
|
276
|
+
width: 100%;
|
|
277
|
+
height: 80vh;
|
|
278
|
+
overflow-y: auto;
|
|
279
|
+
grid-gap: inherit;
|
|
280
|
+
@media (max-width: 960px) {
|
|
281
|
+
overflow-x: hidden;
|
|
282
|
+
flex-direction: column;
|
|
283
|
+
flex-wrap: nowrap;
|
|
264
284
|
}
|
|
265
|
-
|
|
266
|
-
|
|
285
|
+
.item-phone-margin {
|
|
286
|
+
margin: 1rem 0.5rem !important;
|
|
267
287
|
}
|
|
268
|
-
}
|
|
269
|
-
.element-list-inline.overflowScroll {
|
|
270
|
-
display: flex;
|
|
271
|
-
flex-wrap: wrap;
|
|
272
|
-
-webkit-overflow-scrolling: touch;
|
|
273
|
-
scroll-behavior: smooth;
|
|
274
|
-
padding-bottom: 1rem;
|
|
275
|
-
width: 100%;
|
|
276
|
-
height: 80vh;
|
|
277
|
-
overflow-y: auto;
|
|
278
|
-
@media (max-width: 960px) {
|
|
279
|
-
overflow-x: hidden;
|
|
280
|
-
flex-direction: column;
|
|
281
|
-
flex-wrap: nowrap;
|
|
282
|
-
}
|
|
283
|
-
.item-phone-margin {
|
|
284
|
-
margin: 1rem 0.5rem !important;
|
|
285
288
|
}
|
|
286
289
|
}
|
|
287
290
|
</style>
|