Answers for "adding css in tailwind css"

CSS
0

adding css in tailwind css

@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;
  }
}
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language