Scratch space for learning atproto app development
1body {
2 font-family: Arial, Helvetica, sans-serif;
3}
4
5#root {
6 padding: 20px;
7}
8
9/*
10 Josh's Custom CSS Reset
11 https://www.joshwcomeau.com/css/custom-css-reset/
12*/
13*, *::before, *::after {
14 box-sizing: border-box;
15}
16* {
17 margin: 0;
18}
19body {
20 line-height: 1.5;
21 -webkit-font-smoothing: antialiased;
22}
23img, picture, video, canvas, svg {
24 display: block;
25 max-width: 100%;
26}
27input, button, textarea, select {
28 font: inherit;
29}
30p, h1, h2, h3, h4, h5, h6 {
31 overflow-wrap: break-word;
32}
33#root, #__next {
34 isolation: isolate;
35}