diff options
| author | 2022-01-25 21:42:51 +0100 | |
|---|---|---|
| committer | 2022-01-25 22:06:58 +0100 | |
| commit | f9cd68181137c72e92c6951efd9b8d29c4b73bc1 (patch) | |
| tree | a58451fb140d9c5ea023a45bd393127519a7918f /src/components/Content | |
| parent | 2f27e222add9bf10b55971ab915ac411e81d24f0 (diff) | |
| download | client-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.tar.gz client-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.tar.bz2 client-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.zip | |
Added dark mode
Diffstat (limited to 'src/components/Content')
| -rw-r--r-- | src/components/Content/Content.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Content/Content.tsx b/src/components/Content/Content.tsx index 0e63f30..95ee444 100644 --- a/src/components/Content/Content.tsx +++ b/src/components/Content/Content.tsx | |||
| @@ -30,9 +30,9 @@ export default function Content({ raw, setRaw, data }: ContentProps): JSX.Elemen | |||
| 30 | <div className={styles.content}> | 30 | <div className={styles.content}> |
| 31 | <Container fluid className="border-bottom"> | 31 | <Container fluid className="border-bottom"> |
| 32 | <Row className="py-3"> | 32 | <Row className="py-3"> |
| 33 | <Col> | 33 | <Col className="form-check form-switch ms-3"> |
| 34 | <input id='raw' type='checkbox' checked={raw} onChange={() => setRaw(!raw)}/> | 34 | <input className="form-check-input" id='raw' type='checkbox' checked={raw} role="switch" onChange={() => setRaw(!raw)}/> |
| 35 | <label htmlFor='raw' className="ps-1">Raw</label> | 35 | <label htmlFor='raw' className="form-check-label">Raw</label> |
| 36 | </Col> | 36 | </Col> |
| 37 | <Col xs="auto"> | 37 | <Col xs="auto"> |
| 38 | { | 38 | { |
