Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
"--default-authentication-plugin=mysql_native_password",
]
ports:
- 3306:3306
- 3307:3306
volumes:
- ps-mysql:/var/lib/mysql

Expand Down
2 changes: 1 addition & 1 deletion apps/web/ui/workspaces/create-workspace-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export function CreateWorkspaceForm({
<p className="block text-sm font-medium text-neutral-700">
Workspace logo
</p>
<div className="mt-1.5 flex items-center gap-5">
<div className="mt-1.5 flex flex-col items-start gap-5 sm:flex-row sm:items-center">
<Controller
control={control}
name="logo"
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/nav/content/solutions-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function SolutionsContent({ domain }: { domain: string }) {
<span className="text-sm font-medium text-neutral-900 dark:text-white">
{title}
</span>
<p className="mt-2 text-xs text-neutral-500 dark:text-white/60">
<p className="mt-2 text-xs text-neutral-500 dark:text-white/80">
{description}
</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/src/nav/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export function Nav({
href={APP_DOMAIN}
className={cn(
buttonVariants({ variant: "primary" }),
"flex h-8 items-center rounded-lg border px-4 text-sm",
"flex h-8 items-center whitespace-nowrap rounded-lg border px-4 text-sm",
"dark:border-white dark:bg-white dark:text-black dark:hover:bg-neutral-50 dark:hover:ring-white/10",
)}
>
Expand All @@ -220,7 +220,7 @@ export function Nav({
href="https://app.dub.co/login"
className={cn(
buttonVariants({ variant: "secondary" }),
"flex h-8 items-center rounded-lg border px-4 text-sm",
"flex h-8 items-center whitespace-nowrap rounded-lg border px-4 text-sm",
"dark:border-white/10 dark:bg-black dark:text-white dark:hover:bg-neutral-900",
)}
>
Expand All @@ -230,7 +230,7 @@ export function Nav({
href="https://app.dub.co/register"
className={cn(
buttonVariants({ variant: "primary" }),
"flex h-8 items-center rounded-lg border px-4 text-sm",
"flex h-8 items-center whitespace-nowrap rounded-lg border px-4 text-sm",
"dark:border-white dark:bg-white dark:text-black dark:hover:bg-neutral-50 dark:hover:ring-white/10",
)}
>
Expand Down
Loading