Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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