Skip to content

Commit

Permalink
fix kado popup
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandelis Symeonidis committed Dec 11, 2023
1 parent d9952b1 commit 3d3bf61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/components/kado-on-ramp/styles.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "@emotion/styled";
import { color } from "../../design";
import { breakpoints, color } from "../../design";

export const KadoContainer = styled.div`
display: flex;
Expand All @@ -12,6 +12,11 @@ export const KadoContainer = styled.div`
border-radius: 24px;
width: 500px;
height: 700px;
@media (max-width: ${breakpoints.tablet}) {
width: 100vw;
height: 80vh;
}
}
`;

Expand Down

0 comments on commit 3d3bf61

Please sign in to comment.