Skip to content

Commit

Permalink
[Issue-3958] Extension - Re-enable search token feature
Browse files Browse the repository at this point in the history
  • Loading branch information
dungnguyen-art authored and lw-cdm committed Jan 9, 2025
1 parent d6ac14d commit 223d76d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ const Home = styled(Component)<Props>(({ theme: { token } }: Props) => ({
display: 'flex'
},

'.ant-sw-header-center-part.ant-sw-header-center-part': {
paddingRight: 0
},

'.notification-icon': {
position: 'relative',
display: 'flex'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,24 +360,18 @@ const SelectAccount = styled(Component)<Props>(({ theme }) => {
width: '100%',
flexDirection: 'row',
alignItems: 'center',
padding: `${token.paddingXS}px ${token.padding}px`,
paddingLeft: 0,
gap: 8,
padding: `${token.paddingXS}px`,
paddingLeft: token.marginXXS,
paddingRight: token.marginXS,
overflow: 'hidden',
gap: token.sizeXS,
cursor: 'pointer'
},

'.selected-account.is-no-all-account': {
marginLeft: token.marginXXS,

'.account-name ': {
maxWidth: 165
}
},

'.connect-icon': {
color: token.colorTextBase,
width: 40,
height: 40,
paddingRight: token.paddingXXS,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
Expand Down

0 comments on commit 223d76d

Please sign in to comment.