Fix dark theme styling of roomheader cancel button

This commit is contained in:
Richard van der Hoff 2017-01-25 16:33:29 +00:00
parent 55dc2e0161
commit 5099f07562

View file

@ -26,7 +26,8 @@ export function CancelButton(props) {
return (
<AccessibleButton className='mx_RoomHeader_cancelButton' onClick={onClick}>
<img src="img/cancel.svg" width="18" height="18" alt="Cancel"/>
<img src="img/cancel.svg" className='mx_filterFlipColor'
width="18" height="18" alt="Cancel"/>
</AccessibleButton>
);
}