Fix dark theme missed call text in red
This commit is contained in:
parent
56ba8fea4d
commit
930b2145be
1 changed files with 8 additions and 2 deletions
|
@ -232,8 +232,14 @@
|
|||
}
|
||||
|
||||
// Override .ListTile__subtitle so ellipsis is correct color
|
||||
.CallsList__Item--missed .ListTile__subtitle {
|
||||
color: $color-accent-red;
|
||||
.CallsList__ItemTile .ListTile__subtitle {
|
||||
// Need to override the themed selector specificity of .ListTile__subtitle
|
||||
@include light-theme {
|
||||
color: $color-accent-red;
|
||||
}
|
||||
@include dark-theme {
|
||||
color: $color-accent-red;
|
||||
}
|
||||
}
|
||||
|
||||
// Override .ListTile
|
||||
|
|
Loading…
Reference in a new issue