Skip to content

Commit d8bfc62

Browse files
committed
Adjusted positioning
1 parent 17a8b8f commit d8bfc62

File tree

2 files changed

+56
-44
lines changed

2 files changed

+56
-44
lines changed

public/tailwind-output.css

Lines changed: 53 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -787,11 +787,6 @@ video {
787787
margin-bottom: 0.5rem;
788788
}
789789

790-
.my-24 {
791-
margin-top: 6rem;
792-
margin-bottom: 6rem;
793-
}
794-
795790
.mt-1 {
796791
margin-top: 0.25rem;
797792
}
@@ -812,48 +807,24 @@ video {
812807
margin-bottom: 1rem;
813808
}
814809

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;
829812
}
830813

831814
.mt-40 {
832815
margin-top: 10rem;
833816
}
834817

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;
849820
}
850821

851-
.mb-24 {
852-
margin-bottom: 6rem;
822+
.ml-6 {
823+
margin-left: 1.5rem;
853824
}
854825

855-
.mb-32 {
856-
margin-bottom: 8rem;
826+
.mb-3 {
827+
margin-bottom: 0.75rem;
857828
}
858829

859830
.block {
@@ -962,6 +933,26 @@ video {
962933
width: 16rem;
963934
}
964935

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+
965956
.max-w-lg {
966957
max-width: 32rem;
967958
}
@@ -1270,6 +1261,10 @@ video {
12701261
padding-left: 1rem;
12711262
}
12721263

1264+
.pr-10 {
1265+
padding-right: 2.5rem;
1266+
}
1267+
12731268
.text-left {
12741269
text-align: left;
12751270
}
@@ -1540,10 +1535,6 @@ video {
15401535
right: -5rem;
15411536
}
15421537

1543-
.sm\:mt-20 {
1544-
margin-top: 5rem;
1545-
}
1546-
15471538
.sm\:mt-24 {
15481539
margin-top: 6rem;
15491540
}
@@ -1668,6 +1659,10 @@ video {
16681659
margin-top: 10rem;
16691660
}
16701661

1662+
.md\:mt-4 {
1663+
margin-top: 1rem;
1664+
}
1665+
16711666
.md\:flex {
16721667
display: flex;
16731668
}
@@ -1713,6 +1708,23 @@ video {
17131708
padding-right: 0.75rem;
17141709
}
17151710

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+
17161728
.md\:text-10xl {
17171729
font-size: 9rem;
17181730
}

src/components/_Landing/sections/schedule/Schedule.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ function ScheduleOfTheDay(props: { dayInfo: DayInfo }) {
6666
<div className="text-5xl md:text-7xl w-full text-center mb-4 font-semibold glow-subtitles text-textSubtitle">{dayInfo.day}</div>
6767
<div className="w-full">
6868
{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"
7070
key={`${day}-${index}`}
7171
>
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">
7474
{timeInfo.event}
7575
&nbsp;&nbsp;
7676
{timeInfo.reactIcon &&

0 commit comments

Comments
 (0)