Skip to content

Commit 78bce5b

Browse files
committed
Fixed appearance of the search field on Ubuntu 22.04 LTS
1 parent ae119d0 commit 78bce5b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/pages/Accounts.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ const Accounts = (): JSX.Element => {
117117
sx: {
118118
p: 1,
119119
'& ::-webkit-search-cancel-button': {
120-
WebkitAppearance: 'none',
120+
display: 'none', // "WebkitAppearance: 'none'" does not hide the default cancel button on Ubuntu 22.04 LTS
121+
},
122+
'& input': {
123+
WebkitAppearance: 'none', // Hide the default border on Ubuntu 22.04 LTS
121124
},
122125
},
123126
}}

0 commit comments

Comments
 (0)