vue(vite)中使用 tailwindcss

2022-12-14  本文已影响0人  无题syl

安装步骤

在 Vue 3 和 Vite 安装 Tailwind CSS - Tailwind CSS 中文文档

详细步骤解析

vue中使用tailwindcss

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

    @layer utilities {
      .scroll-snap-none {
        scroll-snap-type: none;
      }
      .scroll-snap-x {
        scroll-snap-type: x;
      }
      .scroll-snap-y {
        scroll-snap-type: y;
      }
    }
上一篇下一篇

猜你喜欢

热点阅读