Blame view

node_modules/bootstrap-vue/src/_utilities.scss 578 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// --- BootstrapVue utility / helper classes ---

$bv-utility-classes-defined: false !default;

// Make sure to include these style definitions only once
@if $bv-utility-classes-defined == false {
  $bv-utility-classes-defined: true;

  // No focus outline helper (use sparingly)
  .bv-no-focus-ring:focus {
    outline: none;
  }

  // Create `.bv-d-<bp>-down-none` helper classes
  @each $breakpoint in map-keys($grid-breakpoints) {
    @include media-breakpoint-down($breakpoint) {
      .bv-d-#{$breakpoint}-down-none {
        display: none !important;
      }
    }
  }
}