styles
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2023-12-07 23:53:43 +02:00
parent 1dc3059d0d
commit 31d9c52080
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ export default function HyperText({ link, depth, showLinkPreview, children }: Hy
if (youtubeId) { if (youtubeId) {
return ( return (
<iframe <iframe
className="-mx-4 md:mx-0 w-max" className="-mx-4 md:mx-0 w-max my-2"
src={`https://www.youtube.com/embed/${youtubeId}`} src={`https://www.youtube.com/embed/${youtubeId}`}
title="YouTube video player" title="YouTube video player"
key={youtubeId} key={youtubeId}

View File

@ -7,7 +7,7 @@ import classNames from "classnames";
interface DisplayNameProps { interface DisplayNameProps {
pubkey: HexKey; pubkey: HexKey;
user: UserMetadata | undefined; user?: UserMetadata | undefined;
} }
const DisplayName = ({ pubkey }: DisplayNameProps) => { const DisplayName = ({ pubkey }: DisplayNameProps) => {

View File

@ -87,7 +87,7 @@ export function Header() {
{!isRootTab && ( {!isRootTab && (
<div <div
onClick={scrollUp} onClick={scrollUp}
className="cursor-pointer flex-1 text-center p-2 overflow-hidden whitespace-nowrap truncate"> className="cursor-pointer flex-1 text-center p-2 overflow-hidden whitespace-nowrap truncate text-lg">
{title} {title}
</div> </div>
)} )}