Update spacing
parent
91f683a1ba
commit
e7aaab62ba
|
@ -3,14 +3,12 @@
|
|||
<p>Thumbnails represent a smaller version of the actual content.</p>
|
||||
</DocSectionText>
|
||||
<div class="card">
|
||||
<div class="flex flex-wrap gap-3 mb-5 align-self-center">
|
||||
<div class="flex flex-wrap gap-3 mb-5">
|
||||
<div v-for="option in positionOptions" :key="option.label" class="flex align-items-center">
|
||||
<RadioButton v-model="position" :inputId="option.label" name="option" :value="option.value" />
|
||||
<label :for="option.label" class="ml-2"> {{ option.label }} </label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Galleria :value="images" :responsiveOptions="responsiveOptions" :numVisible="4" :thumbnailsPosition="position" containerStyle="max-width: 640px">
|
||||
<template #item="slotProps">
|
||||
<img :src="slotProps.item.itemImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block" />
|
||||
|
@ -81,14 +79,12 @@ export default {
|
|||
options: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<div class="flex flex-wrap gap-3 mb-5 align-self-center">
|
||||
<div class="flex flex-wrap gap-3 mb-5">
|
||||
<div v-for="option in positionOptions" :key="option.label" class="flex align-items-center">
|
||||
<RadioButton v-model="position" :inputId="option.label" name="option" :value="option.value" />
|
||||
<label :for="option.label" class="ml-2"> {{ option.label }} </label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Galleria :value="images" :responsiveOptions="responsiveOptions" :numVisible="4" :thumbnailsPosition="position" containerStyle="max-width: 640px">
|
||||
<template #item="slotProps">
|
||||
<img :src="slotProps.item.itemImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block" />
|
||||
|
@ -153,14 +149,12 @@ export default {
|
|||
composition: `
|
||||
<template>
|
||||
<div class="card">
|
||||
<div class="flex flex-wrap gap-3 mb-5 align-self-center">
|
||||
<div class="flex flex-wrap gap-3 mb-5">
|
||||
<div v-for="option in positionOptions" :key="option.label" class="flex align-items-center">
|
||||
<RadioButton v-model="position" :inputId="option.label" name="option" :value="option.value" />
|
||||
<label :for="option.label" class="ml-2"> {{ option.label }} </label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Galleria :value="images" :responsiveOptions="responsiveOptions" :numVisible="4" :thumbnailsPosition="position" containerStyle="max-width: 640px">
|
||||
<template #item="slotProps">
|
||||
<img :src="slotProps.item.itemImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block" />
|
||||
|
|
Loading…
Reference in New Issue