Skip to content

Commit 9553ab8

Browse files
committed
lint(theme): fix errors
1 parent 59afaab commit 9553ab8

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

projects/igniteui-angular/src/lib/core/styles/components/calendar/_calendar-theme.scss

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,7 @@
605605
}
606606

607607
%cal-value,
608-
%cal-value--label,
609-
{
608+
%cal-value--label {
610609
// 100 divided by the number of weekdays
611610
min-width: 14.28%;
612611

@@ -683,11 +682,7 @@
683682

684683
&::after {
685684
top: 100%;
686-
@if $not-bootstrap-theme{
687-
height: ($cal-row-padding / 2) + rem(2px);
688-
} @else {
689-
height: $cal-row-padding + rem(5px);
690-
}
685+
height: if($not-bootstrap-theme, ($cal-row-padding / 2) + rem(2px), $cal-row-padding + rem(5px));
691686
}
692687

693688
&::before {
@@ -718,7 +713,7 @@
718713
}
719714

720715
&:nth-child(2) {
721-
@if $not-bootstrap-theme{
716+
@if $not-bootstrap-theme {
722717
margin-top: 0;
723718
}
724719
}
@@ -733,7 +728,7 @@
733728
}
734729
}
735730

736-
@if $bootstrap-theme{
731+
@if $bootstrap-theme {
737732
margin-bottom: 0;
738733
}
739734
}

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
@extend %grid-tbody !optional;
7171

7272
&:focus {
73-
@extend %disable-focus-styles !optional;;
73+
@extend %disable-focus-styles !optional;
7474
}
7575
}
7676

0 commit comments

Comments
 (0)