Skip to content

Commit

Permalink
Remove focused outline color
Browse files Browse the repository at this point in the history
  • Loading branch information
vedran77 committed Jan 8, 2024
1 parent 0554d61 commit 04815bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,7 @@
bottom: 10px;
border-radius: 1000px;
}

#main-conatiner *:focus-visible {
outline: none;
}
2 changes: 1 addition & 1 deletion src/containers/MainBody/ServerList/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const List = (props: IProps) => {
const { themeType } = useTheme();

return (
<View style={styles.mainContainer}>
<View style={styles.mainContainer} id="main-conatiner">
<ListHeader />
<BigList
id={themeType === "dark" ? "scroll" : "scroll-light"}
Expand Down

0 comments on commit 04815bf

Please sign in to comment.