Browse Source

Use nested class instead of space separated classes

pull/1365/head
yksolanki9 3 years ago
parent
commit
eeb03371b8
  1. 8
      apps/client/src/styles.scss

8
apps/client/src/styles.scss

@ -103,7 +103,8 @@ body {
color: rgba(var(--light-primary-text));
}
&.mat-select-disabled .mat-select-placeholder {
&.mat-select-disabled {
.mat-select-placeholder {
color: rgba(
var(--palette-foreground-disabled-text-dark),
var(--palette-foreground-disabled-text-dark-alpha)
@ -111,6 +112,7 @@ body {
}
}
}
}
}
button:focus {
@ -247,10 +249,12 @@ ngx-skeleton-loader {
color: rgba(var(--dark-primary-text));
}
&.mat-select-disabled .mat-select-placeholder {
&.mat-select-disabled {
.mat-select-placeholder {
color: rgba(
var(--palette-foreground-disabled-text),
var(--palette-foreground-disabled-text-alpha)
);
}
}
}

Loading…
Cancel
Save