summaryrefslogtreecommitdiffstats
path: root/src/components/Content/Content.tsx
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@vanderlee.io>2022-01-25 21:42:51 +0100
committerGravatar Tom van der Lee <tom@vanderlee.io>2022-01-25 22:06:58 +0100
commitf9cd68181137c72e92c6951efd9b8d29c4b73bc1 (patch)
treea58451fb140d9c5ea023a45bd393127519a7918f /src/components/Content/Content.tsx
parent2f27e222add9bf10b55971ab915ac411e81d24f0 (diff)
downloadclient-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.tar.gz
client-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.tar.bz2
client-f9cd68181137c72e92c6951efd9b8d29c4b73bc1.zip
Added dark mode
Diffstat (limited to 'src/components/Content/Content.tsx')
-rw-r--r--src/components/Content/Content.tsx6
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 {