Skip to content

Commit

Permalink
Merge branch 'master' into simeonoff/relative-colors
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonoff authored Oct 2, 2024
2 parents 3cb588a + d725234 commit c9704da
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions sass/themes/schemas/components/light/_badge.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -49,8 +48,6 @@ $light-badge: extend(
),
),

border-width: 0,

border-radius: 0,
)
);
Expand All @@ -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),
)
);
Expand Down

0 comments on commit c9704da

Please sign in to comment.