File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import {
1313 WindowSizeContextProvider ,
1414 AnalysisListContextProvider ,
1515} from 'src/providers'
16- import 'src/styles/globals.scss'
1716import 'src/styles/tailwind.css'
1817import 'react-tooltip/dist/react-tooltip.css'
1918import 'node_modules/chessground/assets/chessground.base.css'
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 77 margin : 0 ;
88}
99
10+ html ,
11+ body {
12+ padding : 0 ;
13+ margin : 0 ;
14+ }
15+
16+ a {
17+ color : inherit;
18+ text-decoration : none;
19+ }
20+
21+ * {
22+ box-sizing : border-box;
23+ }
24+
25+ button : disabled {
26+ cursor : not-allowed;
27+ }
28+
29+ h1 ,
30+ h2 ,
31+ h3 ,
32+ h4 ,
33+ h5 {
34+ padding : 0 ;
35+ margin : 0 ;
36+ }
37+
38+ .app-container {
39+ display : flex;
40+ flex-direction : column;
41+ width : 100% ;
42+ min-height : 100vh ;
43+ background-color : rgb (var (--color-backdrop ));
44+ color : rgb (var (--color-text-primary ));
45+ }
46+
47+ @media (max-width : 1000px ) {
48+ .app-container {
49+ flex-direction : column;
50+ overflow-x : hidden;
51+ }
52+ }
53+
54+ .content-container {
55+ flex-grow : 1 ;
56+ border-radius : 10px ;
57+ display : flex;
58+ flex-direction : column;
59+ }
60+
1061: root {
1162 --color-backdrop : 246 246 246 ;
1263 --color-text-primary : 30 30 30 ;
You can’t perform that action at this time.
0 commit comments