Skip to content

Commit

Permalink
style: fix svg color
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1p committed May 24, 2020
1 parent d40e64c commit 231e94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const SettingsView: FunctionComponent<SettingsProps> = (props) => {
if (store.isMinimized) {
store.toggleMinimizeChat();
}
if(!store.settings.name) {
if (!store.settings.name) {
nameInputRef.current.focus();
}
}, []);
Expand Down Expand Up @@ -248,7 +248,7 @@ const Tile = styled.div`
svg {
path {
fill: ${({ theme }) => theme.thirdFontColor};
&:last-child {
&:nth-child(2) {
stroke: ${({ theme }) => theme.secondaryBackgroundColor};
}
}
Expand Down

0 comments on commit 231e94e

Please sign in to comment.