Notice
Recent Posts
Recent Comments
Link
«   2024/06   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
Tags
more
Archives
Today
Total
관리 메뉴

개발공부일지

[react-project] tailwind 사용하기 본문

Project

[react-project] tailwind 사용하기

보람- 2023. 12. 15. 11:27

 

** tailwind.config.js

- 사용자 원하는대로 설정해서 사용이 가능한 테일윈드!

- 다크모드, 메인 색상, 폰트, 반응형 breakpoint 설정이 가능

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js,jsx,tsx}"],
  darkMode: "class",
  theme: {
    extend: {
      colors: {
        "accent-blue": "#1976D2",
      },
      fontFamily: {
        logo: ["logo"],
      },
      maxWidth: {
        128: "32rem",
      },
    },
    screens: {
      mobile: { min: "320px", max: "767px" },
      tablet: { min: "768px", max: "1534px" },
      note: { max: "1536px" },
    },
  },
  plugins: [],
};

 

 

margin: 0 auto   mx-auto
padding-left padding-right px-n
padding-top padding-bottom py-n
border-radius rounded-lg

 

 

*** 반응형

https://tailwindcss.com/docs/responsive-design

 

 


※ cheat sheet

https://nerdcave.com/tailwind-cheat-sheet