Skip to content
Snippets Groups Projects
CarouselArrowContainer.vue 1.12 KiB
Newer Older
<script setup lang="ts">
defineProps<{
  disable?: boolean;
  textColor: string;
  color: string;
}>();
</script>

<template>
    <div
      :class="[
      <slot />
    </div>
  </div>
</template>

<style scoped>
.arrowContainer {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  color: v-bind(textColor);
}
  background-color: v-bind(textColor);
  opacity: 0.1;
}
  opacity: 0.2;
}
.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 10px;
  z-index: 5;
  opacity: 0;
  transition: all 0.2s ease;
}
.disable {
  cursor: auto;
  pointer-events: none;
}
.disableBg {
  background-color: white !important;
}
</style>