Skip to content

Commit

Permalink
style: tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-dane committed Oct 22, 2024
1 parent e6296f8 commit 13e113e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/web/src/components/Tooltip/styled.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import styled from "styled-components";
import { ColorNames } from "@core/types/color.types";
import { getColor } from "@core/util/color.utils";
import { BASE_COLORS } from "@core/constants/colors";
import { Flex } from "@web/components/Flex";

export const StyledShortcutTip = styled(Flex)`
background-color: ${BASE_COLORS.LIGHT_GREY};
border: 2px solid ${getColor(ColorNames.GREY_2)};
background-color: ${({ theme }) => theme.color.fg.primary};
border: 1px solid ${({ theme }) => theme.color.bg.primary};
border-radius: 3px;
padding: 5px 10px;
`;

0 comments on commit 13e113e

Please sign in to comment.