diff --git a/components/ACheckbox.vue b/components/ACheckbox.vue index a3ec5f0..5b6c884 100644 --- a/components/ACheckbox.vue +++ b/components/ACheckbox.vue @@ -290,4 +290,15 @@ watch( } } } + +.custom-checkbox input:checked:disabled ~ .checkmark-lab { + background-color: var(--a-grey-dark) !important; + + &:after { + display: block; + border-color: var(--a-white) !important; + } +} + + diff --git a/components/AGallery.vue b/components/AGallery.vue index 2398d1d..723ed0a 100644 --- a/components/AGallery.vue +++ b/components/AGallery.vue @@ -19,6 +19,7 @@ interface AGalleryProps { title: string; subTitle: string; action: string; + autoHeight: boolean; } const props = withDefaults(defineProps(), { @@ -30,6 +31,7 @@ const props = withDefaults(defineProps(), { title: undefined, subTitle: undefined, action: undefined, + autoHeight: false, }); interface AGalleryEmits { @@ -100,6 +102,9 @@ const mediasAndInspirations = computed((): string[] => {