Skip to content

Commit

Permalink
fix(Tile): fix border-radius on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Apr 21, 2023
1 parent 691c045 commit 5e04164
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -6,6 +6,7 @@ import transition from "../../../utils/transition";
import { StyledIconRight } from "../TileHeader";
import defaultTheme from "../../../defaultTheme";
import { defaultFocus } from "../../../utils/common";
import mq from "../../../utils/mediaQuery";

interface Props extends Common.Globals {
href?: string;
Expand Down Expand Up @@ -42,6 +43,10 @@ export const StyledTileWrapper: any = styled.div`
color: ${theme.orbit.paletteInkLightHover};
}
}
${mq.desktop(css`
border-radius: ${theme.orbit.borderRadiusNormal};
`)}
`}
`;

Expand Down

0 comments on commit 5e04164

Please sign in to comment.