correction erreurs

This commit is contained in:
2026-02-06 23:21:43 +01:00
parent d9ac2b4cc5
commit 1fc267faa8
4 changed files with 10 additions and 6 deletions

View File

@@ -10,7 +10,6 @@
:class="[
`page-section--overflow--${overflow}`,
`page-section--${tone}`,
{ 'page-section--padded': padded },
`page-section--padded--${padded_size}`
]"
>
@@ -28,7 +27,9 @@
</template>
<script setup>
defineProps({
import { computed } from 'vue'
const props = defineProps({
tone: { type: String, default: 'default' }, // default / brand / muted / dark…
padded_size: { type: String, default: '' }, // none | sm | md | lg
contentSize: { type: String, default: 'default'}, // narrow/default/wide
@@ -38,6 +39,7 @@
position : { type: String, default: '' },
overflow : { type: String, default: '' }
})
</script>
<style lang="scss">