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

fix: speaker positioning #640

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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