Skip to content

Commit dda69bd

Browse files
committed
chore: remove hsla function
1 parent d71af0d commit dda69bd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/cli/templates/react/igr-ts/projects/_base/files/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background: hsla(var(--ig-surface-500, 0 0% 100%));
2+
background: var(--ig-surface-500, 0 0% 100%);
33
color: var(--ig-surface-500-contrast, black);
44
font-family: var(--ig-font-family);
55
padding: 0;

packages/cli/templates/webcomponents/igc-ts/projects/_base/files/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background: hsla(var(--ig-surface-500, 0 0% 100%));
2+
background: var(--ig-surface-500, 0 0% 100%);
33
color: var(--ig-surface-500-contrast, black);
44
font-family: var(--ig-font-family);
55
}

packages/igx-templates/igx-ts-legacy/tree/default/files/src/app/__path__/__filePrefix__.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ igx-tree {
1212
.node-refresh {
1313
cursor: pointer;
1414
padding: 0px 4px;
15-
color: hsla(var(--igx-success-500));
15+
color: var(--igx-success-500);
1616
}
1717

1818
.node {

packages/igx-templates/igx-ts/tree/default/files/src/app/__path__/__filePrefix__.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ igx-tree {
1212
.node-refresh {
1313
cursor: pointer;
1414
padding: 0px 4px;
15-
color: hsla(var(--igx-success-500));
15+
color: var(--igx-success-500);
1616
}
1717

1818
.node {

0 commit comments

Comments
 (0)