@saooti/octopus-sdk 41.1.12 → 41.1.13
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -73,9 +73,10 @@ import ClassicImageBanner from '../../misc/ClassicImageBanner.vue';
|
|
|
73
73
|
import { useI18n } from "vue-i18n";
|
|
74
74
|
|
|
75
75
|
//Props
|
|
76
|
-
const props = defineProps
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
const props = defineProps<{
|
|
77
|
+
/** The emission to display */
|
|
78
|
+
emission: Emission;
|
|
79
|
+
}>();
|
|
79
80
|
|
|
80
81
|
//Data
|
|
81
82
|
const activeEmission = ref(true);
|
|
@@ -135,5 +136,23 @@ async function hasPodcast(): Promise<void> {
|
|
|
135
136
|
<style scoped lang="scss">
|
|
136
137
|
article {
|
|
137
138
|
max-height: 254px; // Image size + a few pixels for border
|
|
139
|
+
|
|
140
|
+
// Adjust display for small screens
|
|
141
|
+
@media (width <= 960px) {
|
|
142
|
+
max-height: 500px;
|
|
143
|
+
|
|
144
|
+
a {
|
|
145
|
+
flex-direction: column;
|
|
146
|
+
flex-wrap: nowrap;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.element-name {
|
|
150
|
+
font-size: 1rem;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.element-description {
|
|
154
|
+
font-size: 0.7rem;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
138
157
|
}
|
|
139
|
-
</style>
|
|
158
|
+
</style>
|