Compare commits

...

2 Commits

Author SHA1 Message Date
Alejandro Gomez
fb86399b6f
fix: big res adjustments 2023-06-28 08:56:16 +02:00
Alejandro Gomez
9f8c14c568
fix: new stream adjustments 2023-06-28 08:54:11 +02:00
3 changed files with 21 additions and 3 deletions

View File

@ -41,6 +41,12 @@
}
}
@media (min-width: 2000px) {
.live-chat {
height: calc(100vh - 72px - 96px - 120px - 56px);
}
}
.live-chat>.header {
font-weight: 600;
font-size: 24px;

View File

@ -178,7 +178,7 @@ interface NewStreamDialogProps {
}
export function NewStreamDialog({
text = "New Stream",
text,
ev,
onFinish,
btnClassName = "btn",
@ -187,8 +187,13 @@ export function NewStreamDialog({
<Dialog.Root>
<Dialog.Trigger asChild>
<button type="button" className={btnClassName}>
<span className="hide-on-mobile">{text}</span>
<Icon name="signal" />
{text && text}
{!text && (
<>
<span className="hide-on-mobile">New Stream</span>
<Icon name="signal" />
</>
)}
</button>
</Dialog.Trigger>
<Dialog.Portal>

View File

@ -59,8 +59,15 @@
@media (min-width: 2000px) {
.page {
padding: 0 40px;
grid-template-columns: auto 450px;
}
.video-content {
max-height: calc(100vh - 320px);
}
.video-content video {
height: 100%;
}
}
header {