updated search look for player and server page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m26s

This commit is contained in:
Lee
2024-04-18 05:18:25 +01:00
parent 73fcc708ce
commit 0f304b22b1
10 changed files with 418 additions and 121 deletions

View File

@ -1,6 +1,6 @@
import { ReactElement } from "react";
import SyntaxHighlighter from "react-syntax-highlighter";
import { atomOneDarkReasonable } from "react-syntax-highlighter/dist/esm/styles/hljs";
import { atelierSeasideDark } from "react-syntax-highlighter/dist/esm/styles/hljs";
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from "./ui/dialog";
type CodeDialogProps = {
@ -21,7 +21,7 @@ export function CodeDialog({ title, description, code, children }: CodeDialogPro
</DialogHeader>
<SyntaxHighlighter
language="javascript"
style={atomOneDarkReasonable}
style={atelierSeasideDark}
customStyle={{
maxHeight: "600px",
}}