Skip to content

Commit 080fc73

Browse files
bart-krakowskiimklau
authored andcommitted
fix(): Change background to gray (#122)
1 parent 87a9891 commit 080fc73

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/_includes/components/feedback.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h4>Was this page helpful?</h4>
3333
</div>
3434

3535
<div class="flex__column flex__column--shrink">
36-
<button class="button button--small button-fill button-fill--white button-fill--borderable" data-ref="feedback[unhelpful]" data-active-class="button-fill--error-light">
36+
<button class="button button--small button-fill button-fill--white button-fill--borderable" data-ref="feedback[unhelpful]" data-active-class="button-fill--gray">
3737
<span class="button__icon">
3838
{% include icons/symbols/thumb-down.svg %}
3939
</span>

src/_includes/sidebar/feedback.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</div>
1414

1515
<div class="flex__column flex__column--6">
16-
<button class="button button--small button-fill button-fill--white" data-ref="feedback[unhelpful]" data-active-class="button-fill--error-light">
16+
<button class="button button--small button-fill button-fill--white" data-ref="feedback[unhelpful]" data-active-class="button-fill--gray">
1717
<span class="button__icon">
1818
{% include icons/symbols/thumb-down.svg %}
1919
</span>

src/_sass/components/_button-fill.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
}
3737
}
3838

39-
&--error-light {
40-
background-color: rgba(color(error), 0.78);
39+
&--gray {
40+
background-color: color(gray);
4141
color: color(white);
4242

4343
&:hover {
44-
background-color: rgba(color(error), 0.78);
44+
background-color: color(gray);
4545
color: color(white);
4646
}
4747
}

0 commit comments

Comments
 (0)