Skip to content

Commit

Permalink
style: my profiles page responsiveness (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaryan610 committed Mar 23, 2023
1 parent 1943434 commit f01f2fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/app/pages/[workspaceSlug]/me/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const Profile: NextPage = () => {
{myProfile ? (
<>
<div className="space-y-5">
<section className="relative flex gap-10 rounded-xl bg-secondary p-5">
<section className="relative flex flex-col gap-y-6 gap-x-10 rounded-xl bg-secondary p-5 md:flex-row">
<button
type="button"
className="absolute top-4 right-4 cursor-pointer rounded bg-indigo-100 p-1 duration-300 hover:bg-theme hover:text-white"
Expand All @@ -187,7 +187,7 @@ const Profile: NextPage = () => {
<div className="flex-shrink-0">
<div className="space-y-4">
<div className="relative">
<span className="inline-block h-40 w-40 overflow-hidden rounded bg-gray-100">
<div className="inline-block h-40 w-40 overflow-hidden rounded bg-gray-100">
{!watch("avatar") || watch("avatar") === "" ? (
<UserIcon className="h-full w-full text-gray-300" />
) : (
Expand All @@ -202,7 +202,7 @@ const Profile: NextPage = () => {
/>
</div>
)}
</span>
</div>
</div>
<p className="text-sm text-gray-500">
Max file size is 5MB.
Expand Down

1 comment on commit f01f2fb

@vercel
Copy link

@vercel vercel bot commented on f01f2fb Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-dev – ./apps/app

plane-dev-caravel.vercel.app
plane-dev.vercel.app
plane-dev-git-develop-caravel.vercel.app

Please sign in to comment.