客製 Bootstrap 5.3

@import '../node_modules/bootstrap/scss/functions';

// 要修改的變數放這裡
$primary: #a8c430;

@import '../node_modules/bootstrap/scss/variables';
@import '../node_modules/bootstrap/scss/variables-dark';

// 要新增的 map 放這裡
$sam-colors: (
  'sam1': #900,
  'sam2': #f10,
);

$theme-colors: map-merge($theme-colors, $sam-colors);

@import '../node_modules/bootstrap/scss/bootstrap';

.custom-class {
  display: none;
}
@include media-breakpoint-up(md) { // 斷點設定
  .custom-class {
    display: block;
  }
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

返回頂端