summaryrefslogtreecommitdiffstats
path: root/src/components/Content/Content.tsx
diff options
context:
space:
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 {