Skip to content

Commit 3eb7881

Browse files
committed
quick fixes
1 parent 6df2bc8 commit 3eb7881

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/footer.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ const { ignoreHome = false } = Astro.props;
4646
<ul
4747
class={[
4848
"relative grid -ml-" + (ignoreHome ? "5" : "0") + " gap-2 sm:gap-3",
49-
ignoreHome ? "grid-cols-4 sm:grid-cols-4" : "grid-cols-4 sm:grid-cols-6",
49+
ignoreHome ? "grid-cols-5 sm:grid-cols-5" : "grid-cols-4 sm:grid-cols-6",
5050
"sm:ml-0"
5151
].join(" ")}
5252
>
5353
{
54-
links.slice(ignoreHome ? 2 : 0).map((link) => (
54+
links.slice(ignoreHome ? 1 : 0).map((link) => (
5555
<li>
5656
<a
5757
class="flex h-14 w-14 items-center justify-center rounded-full border-2 border-current p-3"

src/pages/workshops.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ const description = "ML@Purdue Website";
6060
</div>
6161
{
6262
workshopItems.map(({ date, topic, leading, status }) => (
63-
<section class="relative flex w-screen border-b-[1px] border-purple-500 -mt-4 h-[16vh]">
64-
<div class="flex flex-col justify-between items-end border-r-[1px] h-[16vh] w-[30vw] lg:w-[26vw] text-right border-purple-500 p-2 lg:p-4">
63+
<section class="relative flex w-screen border-b-[1px] border-purple-500 -mt-4">
64+
<div class="flex flex-col justify-between items-end w-[30vw] lg:w-[26vw] text-right p-2 lg:p-4">
6565
<h2 class="text-xs lg:text-sm leading-snug mb-2">{date}</h2>
6666
<span class="bg-purple-900 ml-3 text-white rounded-md py-1 px-4 text-xs leading-snug">
6767
{status}
6868
</span>
6969
</div>
7070

71-
<div class="flex flex-col lg:justify-center pt-2 lg:pt-0 h-full pl-2 lg:pl-4">
72-
<span class="orbitron text-xl lg:text-2xl leading-tight">{topic}</span>
71+
<div class="flex flex-col lg:justify-center py-4 h-full pl-2 lg:pl-4 border-purple-500 border-l-[1px] max-w-[63vw]">
72+
<span class="orbitron text-xl leading-tight">{topic}</span>
7373
<h2 class="text-sm lg:text-base mt-2">{leading}</h2>
7474
</div>
7575
</section>

0 commit comments

Comments
 (0)