diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2022-12-28 12:00:06 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2022-12-28 12:00:06 +0100 | 
| commit | 44b5d17dc71cb66d743db28196a40c7f1015815b (patch) | |
| tree | 2c8da4b4f1523aaa6de5969077e438179d3f075b | |
| parent | c68552c7538565ec2c5c4902f03e343049c66b4b (diff) | |
carousel: fix indicator colors in light mode
| -rw-r--r-- | sass/components/_carousel.scss | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sass/components/_carousel.scss b/sass/components/_carousel.scss index cc36d4b..0ec6730 100644 --- a/sass/components/_carousel.scss +++ b/sass/components/_carousel.scss @@ -66,7 +66,7 @@      .indicator-item {        &.active { -        background-color: #fff; +        background-color: $off-black;        }        display: inline-block; @@ -75,7 +75,7 @@        height: 8px;        width: 8px;        margin: 24px 4px; -      background-color: rgba(255,255,255,.5); +      background-color: $inactive-color;        transition: background-color .3s;        border-radius: 50%; | 
