Skip to content

Commit

Permalink
lint(styles): fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
simeonoff committed Sep 29, 2022
1 parent a00b242 commit 853a126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $active-background: var(--active-background, #{utils.color(primary, 700)}) !defa

[part='base'] {
@include utils.border-radius(utils.rem(2px));

padding: 0 utils.pad(8px, 16px, 16px);
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/calendar/themes/calendar.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@use 'sass:map';
@use 'sass:math';

$border-radius: calc(#{var(--size)} / 2);
$border-radius: #{calc(var(--size) / 2)};

:host(igc-calendar) {
--size: #{sizable(#{rem(24px)}, #{rem(28px)}, #{rem(32px)})};
Expand Down

0 comments on commit 853a126

Please sign in to comment.