alpha
Login
or
Join now
flo-bit.dev
/
youtube-party-dj
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
imports fix and qr code styling fix
author
Thaleius
date
2 years ago
(Jun 19, 2024, 1:20 PM +0200)
commit
5b2b1cc4
5b2b1cc4d3d05fdb9c820d4321befa70819932bf
parent
f4245b7c
f4245b7c54217e488e88b4bbc4f94751fc4de172
+2
-2
2 changed files
Expand all
Collapse all
Unified
Split
common
components
QR.tsx
page.tsx
+1
-1
common/components/QR.tsx
View file
Reviewed
···
26
26
});
27
27
28
28
return (
29
29
-
<div class="aspect-square w-3/4 md:w-full border dark:border-white/10 border-black rounded-xl z-10 overflow-hidden bg-white p-4">
29
29
+
<div class="aspect-square h-full border dark:border-white/10 border-black rounded-xl z-10 overflow-hidden bg-white p-4">
30
30
<div class="w-full h-full flex items-center justify-center text-white">
31
31
{qrCode}
32
32
</div>
+1
-1
common/page.tsx
View file
Reviewed
···
3
3
import { Queue } from "./components/Queue.tsx";
4
4
import QRCodeOverlay from "./components/QRCodeOverlay.tsx";
5
5
import { Item, getSessionUserHosts } from "backend/sessions.ts";
6
6
-
import { NowPlaying } from "common/components/NowPlaying.tsx";
6
6
+
import { NowPlaying } from "./components/NowPlaying.tsx";
7
7
import ToggleThemeButton from "./components/ToggleThemeButton.tsx";
8
8
9
9
export default async function App() {