File tree Expand file tree Collapse file tree 2 files changed +56
-44
lines changed
src/components/_Landing/sections/schedule Expand file tree Collapse file tree 2 files changed +56
-44
lines changed Original file line number Diff line number Diff line change @@ -787,11 +787,6 @@ video {
787
787
margin-bottom : 0.5rem ;
788
788
}
789
789
790
- .my-24 {
791
- margin-top : 6rem ;
792
- margin-bottom : 6rem ;
793
- }
794
-
795
790
.mt-1 {
796
791
margin-top : 0.25rem ;
797
792
}
@@ -812,48 +807,24 @@ video {
812
807
margin-bottom : 1rem ;
813
808
}
814
809
815
- .mt-10 {
816
- margin-top : 2.5rem ;
817
- }
818
-
819
- .ml-6 {
820
- margin-left : 1.5rem ;
821
- }
822
-
823
- .mb-3 {
824
- margin-bottom : 0.75rem ;
825
- }
826
-
827
- .mb-12 {
828
- margin-bottom : 3rem ;
810
+ .mb-20 {
811
+ margin-bottom : 5rem ;
829
812
}
830
813
831
814
.mt-40 {
832
815
margin-top : 10rem ;
833
816
}
834
817
835
- .mt-24 {
836
- margin-top : 6rem ;
837
- }
838
-
839
- .mt-32 {
840
- margin-top : 8rem ;
841
- }
842
-
843
- .mt-44 {
844
- margin-top : 11rem ;
845
- }
846
-
847
- .mb-20 {
848
- margin-bottom : 5rem ;
818
+ .mt-10 {
819
+ margin-top : 2.5rem ;
849
820
}
850
821
851
- .mb-24 {
852
- margin-bottom : 6 rem ;
822
+ .ml-6 {
823
+ margin-left : 1.5 rem ;
853
824
}
854
825
855
- .mb-32 {
856
- margin-bottom : 8 rem ;
826
+ .mb-3 {
827
+ margin-bottom : 0.75 rem ;
857
828
}
858
829
859
830
.block {
@@ -962,6 +933,26 @@ video {
962
933
width : 16rem ;
963
934
}
964
935
936
+ .w-1 {
937
+ width : 0.25rem ;
938
+ }
939
+
940
+ .w-1\/ 4 {
941
+ width : 25% ;
942
+ }
943
+
944
+ .w-3\/ 4 {
945
+ width : 75% ;
946
+ }
947
+
948
+ .w-2\/ 5 {
949
+ width : 40% ;
950
+ }
951
+
952
+ .w-3\/ 5 {
953
+ width : 60% ;
954
+ }
955
+
965
956
.max-w-lg {
966
957
max-width : 32rem ;
967
958
}
@@ -1270,6 +1261,10 @@ video {
1270
1261
padding-left : 1rem ;
1271
1262
}
1272
1263
1264
+ .pr-10 {
1265
+ padding-right : 2.5rem ;
1266
+ }
1267
+
1273
1268
.text-left {
1274
1269
text-align : left;
1275
1270
}
@@ -1540,10 +1535,6 @@ video {
1540
1535
right : -5rem ;
1541
1536
}
1542
1537
1543
- .sm\:mt-20 {
1544
- margin-top : 5rem ;
1545
- }
1546
-
1547
1538
.sm\:mt-24 {
1548
1539
margin-top : 6rem ;
1549
1540
}
@@ -1668,6 +1659,10 @@ video {
1668
1659
margin-top : 10rem ;
1669
1660
}
1670
1661
1662
+ .md\:mt-4 {
1663
+ margin-top : 1rem ;
1664
+ }
1665
+
1671
1666
.md\:flex {
1672
1667
display : flex;
1673
1668
}
@@ -1713,6 +1708,23 @@ video {
1713
1708
padding-right : 0.75rem ;
1714
1709
}
1715
1710
1711
+ .md\:px-0 {
1712
+ padding-left : 0px ;
1713
+ padding-right : 0px ;
1714
+ }
1715
+
1716
+ .md\:pr-5 {
1717
+ padding-right : 1.25rem ;
1718
+ }
1719
+
1720
+ .md\:pr-20 {
1721
+ padding-right : 5rem ;
1722
+ }
1723
+
1724
+ .md\:pr-10 {
1725
+ padding-right : 2.5rem ;
1726
+ }
1727
+
1716
1728
.md\:text-10xl {
1717
1729
font-size : 9rem ;
1718
1730
}
Original file line number Diff line number Diff line change @@ -66,11 +66,11 @@ function ScheduleOfTheDay(props: { dayInfo: DayInfo }) {
66
66
< div className = "text-5xl md:text-7xl w-full text-center mb-4 font-semibold glow-subtitles text-textSubtitle" > { dayInfo . day } </ div >
67
67
< div className = "w-full" >
68
68
{ times . map ( ( timeInfo , index ) => (
69
- < div className = "flex flex-row w-full text-xl font-semibold my-2 md:my-5 md:px-3"
69
+ < div className = "flex flex-row w-full text-xl font-semibold my-2 md:my-5 md:px-3 pr-4 "
70
70
key = { `${ day } -${ index } ` }
71
71
>
72
- < div className = "w-1/2 h-fit text-right pr-5" > { timeInfo . time } </ div >
73
- < div className = "w-1/2 " >
72
+ < div className = "w-2/5 h-fit text-right pr-5" > { timeInfo . time } </ div >
73
+ < div className = "w-3/5 " >
74
74
{ timeInfo . event }
75
75
76
76
{ timeInfo . reactIcon &&
You can’t perform that action at this time.
0 commit comments