LoginSignup
0
3

More than 3 years have passed since last update.

railsでtailwindcssを使うときに@applyでutilityをまとめる

Last updated at Posted at 2020-06-27

この記事の内容

  • rails
  • tailwindcss

で@ applyを用いてutilityをまとめる。例えばborderを下記で設定したいとき

border border-solid border-gray-300;

記述箇所

javascript/css/tailwindcss.css
.border_or {
  @apply border border-solid border-gray-300;
}

@applyで1行でまとめられる

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3