Skip to content

Commit

Permalink
Adjust ui
Browse files Browse the repository at this point in the history
  • Loading branch information
OKendigelyan committed Oct 2, 2024
1 parent 89a380f commit 6eb6201
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion apps/web/src/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export const Layout = () => {
base: '"header" "sidebar" "main" "footer" "nav"',
md: `"header header" "sidebar nav" "sidebar main" "footer main"`,
}}
height={{ md: "100vh", base: "100dvh" }}
height={{ md: "100vh" }}
minHeight={{ base: "100dvh" }}
padding={{ md: "20px 46px 0", base: "54px 0 0" }}
data-testid="signed-in-layout"
>
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/components/EmptyMessage/EmptyMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export const EmptyMessage = ({
{cta && (
<Button
as={Link}
marginTop={{ base: "12px", md: "0" }}
padding="0 24px"
fontSize="18px"
href={ctaUrl}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Main/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Tokens } from "../../views/Tokens";
export const Main = () => (
<Box
overflowY="auto"
height={{ md: "calc(100% + 29px)" }}
height={{ base: "100%", md: "calc(100% + 29px)" }}
marginTop={{ md: "-75px" }}
paddingTop={{ md: "75px" }}
borderRadius="30px"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body:before {
top: 0;
left: 0;
right: 0;
height: 100vh;
min-height: 100%;
}

code {
Expand Down

0 comments on commit 6eb6201

Please sign in to comment.