This commit is contained in:
ameer2468 2024-06-18 11:21:36 +03:00
parent bdd2966071
commit d050df98b4
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ const Library = ({ thisInstance, cloudLibrary }: LibraryProps) => {
return (
<div className="flex flex-col gap-3">
<p className="font-bold text-medium">Library</p>
<Card className="flex-row items-center gap-10">
<Card className="flex-row items-center gap-10 !px-2">
<p className="font-medium">
Name: <span className="font-normal text-ink-dull">{cloudLibrary.name}</span>
</p>

View file

@ -27,7 +27,7 @@ export function JoinLibrary() {
<div className="mt-2">
<span>Cloud Libraries</span>
<ul className="relative flex h-32 w-48 flex-col rounded border border-app-frame p-2">
<ul className="relative flex flex-col w-48 h-32 p-2 border rounded border-app-frame">
<CloudLibraries />
<AuthRequiredOverlay />
</ul>