Fix borders

This commit is contained in:
austinkelsay 2024-11-08 16:27:21 -06:00
parent 89b58883bf
commit f541d09948
No known key found for this signature in database
GPG Key ID: 44CB4EC6D9F2FA02
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ export function DocumentTemplate({ document, isLesson, showMetaTags }) {
<ZapDisplay zapAmount={zapAmount} event={document} zapsLoading={zapsLoading && zapAmount === 0} /> <ZapDisplay zapAmount={zapAmount} event={document} zapsLoading={zapsLoading && zapAmount === 0} />
</div> </div>
</div> </div>
<CardHeader className="flex flex-row justify-between items-center p-4"> <CardHeader className="flex flex-row justify-between items-center p-4 border-b border-gray-700">
<div className="flex items-center gap-4"> <div className="flex items-center gap-4">
<CardTitle className="text-xl sm:text-2xl text-[#f8f8ff]">{document.title}</CardTitle> <CardTitle className="text-xl sm:text-2xl text-[#f8f8ff]">{document.title}</CardTitle>
</div> </div>

View File

@ -68,7 +68,7 @@ export function VideoTemplate({ video, isLesson, showMetaTags }) {
<ZapDisplay zapAmount={zapAmount} event={video} zapsLoading={zapsLoading && zapAmount === 0} /> <ZapDisplay zapAmount={zapAmount} event={video} zapsLoading={zapsLoading && zapAmount === 0} />
</div> </div>
</div> </div>
<CardHeader className="flex flex-row justify-between items-center p-4"> <CardHeader className="flex flex-row justify-between items-center p-4 border-b border-gray-700">
<div className="flex items-center gap-4"> <div className="flex items-center gap-4">
<CardTitle className="text-xl sm:text-2xl text-[#f8f8ff]">{video.title}</CardTitle> <CardTitle className="text-xl sm:text-2xl text-[#f8f8ff]">{video.title}</CardTitle>
</div> </div>