diff --git a/sass/themes/schemas/components/light/_badge.scss b/sass/themes/schemas/components/light/_badge.scss index d37ef1e9..c1c381cf 100644 --- a/sass/themes/schemas/components/light/_badge.scss +++ b/sass/themes/schemas/components/light/_badge.scss @@ -14,7 +14,6 @@ /// @prop {Map} text-color [contrast-color: ('primary', 500)] - The text color used. /// @prop {Map} border-color [color: ('gray', 50)] - The border color used. /// @prop {Map} background-color [color: ('primary', 500)] - The background color used. -/// @prop {Number} border-width [0] - The border width of the badge component. /// @prop {Number} elevation [1] - The elevation level, between 0-24, to be used for the badge shadow. /// @prop {Number} border-radius [0] - The border radius used for badge. /// @requires {Map} $default-elevation-badge @@ -49,8 +48,6 @@ $light-badge: extend( ), ), - border-width: 0, - border-radius: 0, ) ); @@ -67,14 +64,11 @@ $fluent-badge: $light-badge; /// Generates a bootstrap badge schema. /// @type {Map} -/// @prop {Number} border-width [1px] - The border width of the badge component. /// @prop {Number} border-radius [rem(4px)] - The border radius used for badge. /// @requires {Map} $light-badge $bootstrap-badge: extend( $light-badge, ( - border-width: 1px, - border-radius: rem(4px), ) );