Block.vue 723 B

123456789101112131415161718192021
  1. <template>
  2. <div class="features-container min-h-332px bg-white lg:p-24px lg:pb-44px rounded-16px lg:w-[23.7288%] <lg:p-24px <lg:max-w-268px <lg:min-h-320px <lg:h-full">
  3. <slot></slot>
  4. <div class="mb-8px text-20px leading-24px text-[#3C4247] font-bold lg:mt-24px <lg:mt-12px <lg:mb-8px <lg:text-left"><slot name="title" /></div>
  5. <div class="text-[#606972] lg:text-tiny <lg:text-16px <lg:leading-24px"><slot name="desc" /></div>
  6. </div>
  7. </template>
  8. <style lang="scss" scoped>
  9. .features-container {
  10. box-shadow: 0px 10px 35px rgba(186, 186, 186, 0.25);
  11. img {
  12. width: 84px;
  13. }
  14. }
  15. @media screen and (max-width: 930px) {
  16. .features-container img {
  17. width: 70px;
  18. }
  19. }
  20. </style>