Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions style/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright 2011-2019 The Bootstrap Authors
// Copyright 2011-2019 Twitter, Inc.
// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
@use "colors" as *;

.sd-btn {
background-color: transparent;
Expand Down
2 changes: 2 additions & 0 deletions style/_display.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "spacing" as *;

.sd-d-none {
display: none !important;
}
Expand Down
1 change: 1 addition & 0 deletions style/_grids.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// Copyright 2011-2019 Twitter, Inc.
// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
@use 'sass:math';
@use "spacing" as *;

$gutter-widths: $spacings;

Expand Down
2 changes: 2 additions & 0 deletions style/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@use "colors" as *;

:root {
// semantic colors
@each $color, $value in $semantic-colors {
Expand Down
32 changes: 16 additions & 16 deletions style/index.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
@import './colors';
@import './spacing';
@import './sizing';
@import './display';
@import './text';
@import './borders';
@import './animations';
@import './badge';
@import './button';
@import './icons';
@import './cards';
@import './grids';
@import './dropdown';
@import './tabs';
@import './overrides';
@import './variables'
@use './colors' as *;
@use './spacing' as *;
@use './sizing' as *;
@use './display' as *;
@use './text' as *;
@use './borders' as *;
@use './animations' as *;
@use './badge' as *;
@use './button' as *;
@use './icons' as *;
@use './cards' as *;
@use './grids' as *;
@use './dropdown' as *;
@use './tabs' as *;
@use './overrides' as *;
@use './variables' as *;