Skip to content

Commit

Permalink
feat: TryQuiet#1502 make backgrounds on channel input and settings ta…
Browse files Browse the repository at this point in the history
…bs the default
  • Loading branch information
mike-kiss committed May 14, 2024
1 parent 4d80746 commit 1fb3969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const StyledTabsWrapper = styled(Grid)(() => ({

const StyledAppBar = styled(AppBar, { label: 'xxxxx' })(({ theme }) => ({
backgroundColor: theme.palette.background.default,
backgroundImage: 'none',
boxShadow: theme.shadows[3],

[`& .${classes.leaveComunity}`]: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const StyledChannelInput = styled(Grid)(({ theme }) => ({
scrollPaddingBottom: '12px',
height: '48px',
lineHeight: '24px',
backgroundColor: theme.palette.background.default,
'&:empty': {
'&:before': {
content: 'attr(placeholder)',
Expand All @@ -89,9 +90,6 @@ const StyledChannelInput = styled(Grid)(({ theme }) => ({
maxHeight: maxHeight,
overflowY: 'auto',
borderRadius: 4,
'&:hover': {
borderColor: theme.palette.colors.trueBlack,
},
display: 'flex',
flexDirection: 'column',
flexWrap: 'nowrap',
Expand Down Expand Up @@ -128,9 +126,6 @@ const StyledChannelInput = styled(Grid)(({ theme }) => ({
pointerEvents: 'none',
touchAction: 'none',
},
[`& .${classes.focused}`]: {
borderColor: theme.palette.colors.trueBlack,
},
[`& .${classes.iconButton}`]: {
cursor: 'pointer',
position: 'relative',
Expand Down

0 comments on commit 1fb3969

Please sign in to comment.