Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit

Permalink
fix: speaker positioning (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
GresosJ authored Jan 26, 2024
1 parent 7f6796d commit 1c02bba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layout/Speakers/components/Schedule/Table/Block/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Block({
<p className="">{company}</p>
</div>

<div className="flex">
<div className="ml-4 flex">
{linkedin && (
<a
href={`https://www.linkedin.com/in/${linkedin}`}
Expand Down Expand Up @@ -92,10 +92,10 @@ export default function Block({
</div>

<div className="z-50 flex select-none items-center justify-end">
<p className="grow text-gray-400">{talk}</p>
<p className="w-28 grow text-gray-400">{talk}</p>
{description && (
<button
className="w-16 rounded-full border border-gray-500 px-2 font-iextrabold text-xl text-white transition-colors hover:bg-white/20"
className="ml-4 w-16 rounded-full border border-gray-500 px-2 font-iextrabold text-xl text-white transition-colors hover:bg-white/20"
onClick={() => setShowSpeaker(!showSpeaker)}
>
{showSpeaker ? "+" : "-"}
Expand Down

0 comments on commit 1c02bba

Please sign in to comment.