diff options
| author | Louis-Maxime Piton <[email protected]> | 2022-12-18 08:19:33 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-18 08:19:33 +0100 |
| commit | 6807008159012b9cf370db87dcd804c4cae3a1b5 (patch) | |
| tree | fc7a2a152fea96f72d68a7a6c0ad6cad254e8d28 | |
| parent | 9d64a983ee05eb84d0e793e359a7335cafaf3eb6 (diff) | |
| download | bootstrap-6807008159012b9cf370db87dcd804c4cae3a1b5.tar.xz bootstrap-6807008159012b9cf370db87dcd804c4cae3a1b5.zip | |
Docs: replace some `--#{$prefix}` by `--bs` in Sass files (#37617)
Co-authored-by: Julien Déramond <[email protected]>
| -rw-r--r-- | site/assets/scss/_brand.scss | 4 | ||||
| -rw-r--r-- | site/assets/scss/_component-examples.scss | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/site/assets/scss/_brand.scss b/site/assets/scss/_brand.scss index 304075c92..03fe2fe1f 100644 --- a/site/assets/scss/_brand.scss +++ b/site/assets/scss/_brand.scss @@ -15,13 +15,13 @@ // Individual items .bd-brand-item { + .bd-brand-item { - border-top: 1px solid var(--#{$prefix}border-color); + border-top: 1px solid var(--bs-border-color); } @include media-breakpoint-up(md) { + .bd-brand-item { border-top: 0; - border-left: 1px solid var(--#{$prefix}border-color); + border-left: 1px solid var(--bs-border-color); } } } diff --git a/site/assets/scss/_component-examples.scss b/site/assets/scss/_component-examples.scss index dcedffa13..11800a638 100644 --- a/site/assets/scss/_component-examples.scss +++ b/site/assets/scss/_component-examples.scss @@ -180,7 +180,7 @@ width: 10rem; color: var(--bs-secondary-color); background-color: var(--bs-tertiary-bg); - border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color); + border: var(--bs-border-width) solid var(--bs-border-color); > div { display: flex; |
