Skip to content

Commit

Permalink
adjustments after visual tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Jul 31, 2024
1 parent c7adf79 commit de2f081
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions apps/vue-storybook/.percy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ snapshot:
- 1280
minHeight: 1024
percyCSS: ''
concurrency: 15
disableShadowDOM: false
enableJavascript: true
enableLayout: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div
v-if="data"
class="BlockInlineImage container mx-auto"
class="BlockInlineImage LayoutHelper container mx-auto"
>
<div class="lg:BaseGrid lg:px-0 px-4">
<!-- the image -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const BlockStreamfieldTruncatedData = {
value:
'<p>Lorem ipsum <a href="/missions/test-mission/">dolor</a> sit amet, consectetur adipiscing elit. Quisque vitae justo quis justo malesuada molestie. Cras sed tincidunt dui.</p><p>Integer imperdiet blandit neque vitae euismod. Nulla aliquet lacus nibh, vel tincidunt urna efficitur non. In et eros vitae ex posuere maximus quis eget urna. Suspendisse fringilla posuere velit sit amet posuere. Morbi malesuada bibendum vehicula. Donec faucibus ut erat ut mattis. Suspendisse ornare, quam at placerat cursus, dolor mi lacinia nunc, eget maximus augue nulla in dolor.</p>\n'
},
BlockInlineImageData.block,
BlockIframeEmbedData
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@ export default defineComponent({
props: {
data: {
type: Object,
required: false
required: false,
default: undefined
},
startDateSplit: {
type: Object as PropType<EventDateObject | undefined>,
required: true
},
image: {
type: Object,
required: false
required: false,
default: undefined
}
},
computed: {
Expand All @@ -61,6 +63,3 @@ export default defineComponent({
}
})
</script>
<style lang="scss">
@import '@explorer-1/common/src/scss/components/HeroMedia';
</style>

0 comments on commit de2f081

Please sign in to comment.