Fix dark theme styling of roomheader cancel button

pull/21833/head
Richard van der Hoff 2017-01-25 16:33:29 +00:00
parent 55dc2e0161
commit 5099f07562
1 changed files with 2 additions and 1 deletions

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>
);
}