Skip to content

Commit d9932f4

Browse files
committed
fix: Reposition 'Powered by Motia' badge to be visible above other elements
1 parent c8f14dc commit d9932f4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

components/Visualizer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2629,12 +2629,12 @@ const Visualizer: React.FC<VisualizerProps> = ({
26292629
Press <kbd className="px-1 py-0.5 bg-[#1e3a5f] rounded text-[#64748b] font-mono">?</kbd> for shortcuts
26302630
</div>
26312631

2632-
{/* Powered by Motia */}
2632+
{/* Powered by Motia - positioned at bottom center on mobile, bottom right on desktop (next to shortcuts) */}
26332633
<a
26342634
href="https://github.com/MotiaDev/motia"
26352635
target="_blank"
26362636
rel="noopener noreferrer"
2637-
className="absolute bottom-2 left-2 flex items-center gap-1.5 px-2 py-1 bg-[#0d1424]/80 backdrop-blur-sm border border-[#1e3a5f]/50 rounded-full text-[10px] text-[#64748b] hover:text-[#00d4ff] hover:border-[#00d4ff]/50 transition-all group"
2637+
className={`absolute bottom-2 z-40 flex items-center gap-1.5 px-2.5 py-1 bg-[#0d1424]/90 backdrop-blur-sm border border-[#1e3a5f]/50 rounded-full text-[10px] text-[#64748b] hover:text-[#00d4ff] hover:border-[#00d4ff]/50 transition-all group shadow-lg ${selectedNode ? 'right-80 sm:right-[340px]' : 'right-1/2 translate-x-1/2 sm:translate-x-0 sm:right-36'}`}
26382638
>
26392639
<svg
26402640
className="w-3 h-3 text-[#64748b] group-hover:text-[#00d4ff] transition-colors"

src/github/export-star-data.step.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,4 @@ export const handler: Handlers['ExportStarData'] = async (req, { logger }) => {
205205

206206

207207

208+

0 commit comments

Comments
 (0)