From 4d19e0e8a49e887f007a1e5a147d900d15f61a9c Mon Sep 17 00:00:00 2001 From: k-utsumi Date: Tue, 16 Feb 2021 15:05:09 +0900 Subject: [PATCH] Clear duplicated class `border-0` (#32925) * Clear duplicated class `border-0` * Update migration.md Co-authored-by: Mark Otto --- scss/_variables.scss | 1 - site/content/docs/5.0/migration.md | 10 +++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/scss/_variables.scss b/scss/_variables.scss index 94e9850955..3fcba715b5 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -360,7 +360,6 @@ $container-padding-x: $grid-gutter-width / 2 !default; // scss-docs-start border-variables $border-width: 1px !default; $border-widths: ( - 0: 0, 1: 1px, 2: 2px, 3: 3px, diff --git a/site/content/docs/5.0/migration.md b/site/content/docs/5.0/migration.md index 99a9c9e38c..94f2214d70 100644 --- a/site/content/docs/5.0/migration.md +++ b/site/content/docs/5.0/migration.md @@ -7,11 +7,15 @@ aliases: "/migration/" toc: true --- +## v5.0.0-beta3 + +### Utilities + +- Dropped the `0` entry in `$border-widths` map to remove the duplicated `.border-0` class. + ## v5.0.0-beta2 -### Sass - -#### Utilities +### Utilities - Renamed `--aspect-ratio` to `--bs-aspect-ratio` to be consistent with other custom properties. - Extended the `.visually-hidden-focusable` helper to also work on containers, using `:focus-within`.