PromucFlow_constructor/app/client/src/globalStyles/popover.ts
2021-03-30 14:18:14 +05:30

9 lines
257 B
TypeScript

import { createGlobalStyle } from "styled-components";
import { Classes } from "@blueprintjs/core";
export const PopoverStyles = createGlobalStyle`
.${Classes.POPOVER} {
box-shadow: 0px 0px 2px rgb(0 0 0 / 20%), 0px 2px 10px rgb(0 0 0 / 10%);
}
`;