simple dark mode

This commit is contained in:
2021-08-24 20:16:59 +02:00
parent 27326898f9
commit 98f198c74a
8 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ interface Props {
const FileBrowserElement: React.FC<Props> = (props) => {
return (
<tr
className="hover:bg-gray-100 text-lg"
className="hover:bg-gray-100 dark:hover:bg-gray-900 text-lg"
onClick={()=>{
if(props.file){
props.onClick?.(props.file)