2025 年 3 月

網頁

客製 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;
  }
}
返回頂端