Skip to content

Commit

Permalink
fix: adjust wrong css variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Jul 15, 2024
1 parent e279248 commit 2646795
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/assets/scss/components/_radio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $radio-line-height: 1.25 !default;
box-shadow: var(--#{$prefix}radio-box-shadow, $radio-box-shadow);
border-radius: 50%;
background: var(
--#{$prefix}-radio-active-background-color,
--#{$prefix}radio-active-background-color,
$radio-active-background-color
);
mask-image: url(svg_radio_empty());
Expand Down Expand Up @@ -100,7 +100,7 @@ $radio-line-height: 1.25 !default;

&--#{$name} {
--#{$prefix}focus: #{createFocus($color)};
--#{$prefix}-radio-active-background-color: #{$color};
--#{$prefix}radio-active-background-color: #{$color};
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/assets/scss/components/_taginput.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $taginput-margin-icon-to-text: 0.1875em !default;
font-size: var(--#{$prefix}base-font-size, $base-font-size);
line-height: var(--#{$prefix}input-line-height, $input-line-height);
margin: var(--#{$prefix}input-margin, $input-margin);
width: var(--oruga-taginput-width, inherit);
width: var(--#{$prefix}taginput-width, inherit);

// size variants
@each $name, $value in $sizes {
Expand Down

0 comments on commit 2646795

Please sign in to comment.