0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bootstrap4-alpha4を自分用に使いやすく設定

Last updated at Posted at 2016-09-28

Bootstrap4-alpha4を自分用に使いやすく設定しました

ファイル構成

Bootstrap4-alpha4
└── dev
    └── scss
        ├── _bootstrap.scss(bowerのbootstrapを読み込み)
        ├── _bootstrap-variables.scss(bootstrapの変数を変更)
        └── style.scss(各scssファイルを読み込み、../css/にコンパイルします)

Bootstrap自体はBowerで読み込ませて、作業ディレクトリ内の/scss/に

  • Bootstrap読み込み用scss
  • variables変更用scss

を設置しています。

FlexBoxグリッドを利用できるようにしています

_variables.scssの42行目辺りにある「Options」の$enable-flexを初期値のfalseからtrueに変えるとFlexBoxグリッドが利用できるようになります。

例に習って/dev/scss/の_bootstrap-variables.scssを変更しています。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?