File tree Expand file tree Collapse file tree 4 files changed +21
-18
lines changed
Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export const CodeListOrder = () => {
8282 collisionDetection = { closestCenter }
8383 onDragEnd = { handleDragEnd }
8484 >
85- < div className = "card space-y-2 p-4 h-auto w-full text" >
85+ < div className = "card space-y-2 p-4 h-auto w-full text 3xl:col-span-2 " >
8686 < div className = "flex items-center justify-between" >
8787 < h3 > Arrange Lists</ h3 >
8888 < ToolTip >
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ export const MusicRadio: FC = () => {
345345 } ;
346346
347347 return (
348- < div className = "card w-full flex flex-col gap-4 text" >
348+ < div className = "card w-full flex flex-col gap-4 text md:col-span-2 " >
349349 < div className = "flex items-center justify-between" >
350350 < h1 className = "text-primary" > Fishing Village Radio</ h1 >
351351 < div className = "flex items-center gap-2 flex-wrap justify-end" >
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ function RouteComponent() {
4848 < PartyMembers />
4949 </ div >
5050 < CodeListOrder />
51- < MusicRadio />
5251 < CodeEntryMod />
5352 < PartyChat />
53+ < MusicRadio />
5454 < PartyProgress />
5555 </ div > ) ;
5656}
Original file line number Diff line number Diff line change 11/** @type {import('tailwindcss').Config } */
22export default {
3- content : [ ' ./src/**/*.{html,tsx}' ] ,
3+ content : [ " ./src/**/*.{html,tsx}" ] ,
44 theme : {
55 extend : {
66 backgroundColor : {
7- primary : ' #3F3D3C' ,
8- secondary : ' #53504D' ,
9- tertiary : ' #2d2b29' ,
7+ primary : " #3F3D3C" ,
8+ secondary : " #53504D" ,
9+ tertiary : " #2d2b29" ,
1010 } ,
1111 colors : {
12- accent : ' #CCC46A' ,
13- primary : ' #F5F5F5' ,
14- primarybg : ' #3F3D3C' ,
15- secondary : ' #858585' ,
16- secondarybg : ' #53504D' ,
17- tertiary : ' #2d2b29' ,
18- rust : ' #AA4735' ,
19- ' rust-active' : ' #852E1E' ,
12+ accent : " #CCC46A" ,
13+ primary : " #F5F5F5" ,
14+ primarybg : " #3F3D3C" ,
15+ secondary : " #858585" ,
16+ secondarybg : " #53504D" ,
17+ tertiary : " #2d2b29" ,
18+ rust : " #AA4735" ,
19+ " rust-active" : " #852E1E" ,
2020 // background: 'var(--theme-bg-color)',
2121 // text: 'var(--theme-text-color)',
2222 // hint: 'var(--theme-hint-color)',
@@ -34,9 +34,12 @@ export default {
3434 // 'destructive-text': 'var(--theme-destructive-color)',
3535 } ,
3636 animation : {
37- 'spin-slow' : 'spin 9s linear infinite' ,
38- 'zoom' : 'zoom 1s ease-in-out infinite' ,
39- }
37+ "spin-slow" : "spin 9s linear infinite" ,
38+ zoom : "zoom 1s ease-in-out infinite" ,
39+ } ,
40+ screens : {
41+ "3xl" : "1660px" ,
42+ } ,
4043 } ,
4144 } ,
4245 plugins : [ ] ,
You can’t perform that action at this time.
0 commit comments