Skip to content

Commit

Permalink
fix(UI-1277): update height dashboard and intro components
Browse files Browse the repository at this point in the history
  • Loading branch information
J1za committed Jan 31, 2025
1 parent 5925584 commit 01790b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/pages/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Dashboard = () => {
}, [isLoadingProjectsList, projectsList]);

return (
<div className="flex w-full overflow-hidden rounded-none md:mt-1.5 md:rounded-2xl">
<div className="flex size-full overflow-hidden rounded-none md:mt-1.5 md:rounded-2xl">
<div className="relative flex w-2/3 flex-col" style={{ width: `${!isMobile ? leftSideWidth : 100}%` }}>
<Frame className="flex-1 rounded-none bg-gray-1100 md:rounded-r-none md:pb-0">
<DashboardTopbar />
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const Intro = () => {
const { isIOS, isMobile } = useWindowDimensions();

return (
<div className="my-0 flex w-full overflow-hidden rounded-none md:mt-1.5 md:rounded-2xl">
<div className="flex size-full overflow-hidden rounded-none md:mt-1.5 md:rounded-2xl">
<div
className="relative flex w-2/3 flex-col"
style={{ width: `${!(isIOS || isMobile) ? leftSideWidth : 100}%` }}
Expand Down

0 comments on commit 01790b6

Please sign in to comment.