Skip to content

Commit 5eee7cc

Browse files
author
Ivan Uzun
committed
fix disabled arrow color
1 parent 01586ba commit 5eee7cc

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

src/Header/DefArrow/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const DefArrow = ({expanded, disabled}) => (
88
'Header__arrow--down': !expanded,
99
'Header__arrow--up': expanded,
1010
'Header__arrow--active': !disabled && expanded,
11+
'Header__arrow--disabled': disabled,
1112
})}
1213
/>
1314
</div>

src/scss/main.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,10 @@
182182
&--active {
183183
border-bottom-color: $SM-dropDownActiveArrowColor !important;
184184
}
185+
186+
&--disabled {
187+
border-bottom-color: $SM-dropDownArrowColor !important;
188+
}
185189
}
186190

187191
&__loading {

0 commit comments

Comments
 (0)