UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

7 lines 516 B
import { css } from "styled-components"; import mq from "../../utils/mediaQuery"; import { getBorder } from "./borders"; export const CardElement = css(["", ";"], ({ theme, expanded }) => css(["width:100%;box-sizing:border-box;position:relative;box-shadow:", ";border-top:", ";background:", ";", ";"], expanded && theme.orbit.boxShadowActionActive, !expanded && getBorder, theme.orbit.backgroundCard, mq.largeMobile(css(["border-left:", ";border-right:", ";"], !expanded && getBorder, !expanded && getBorder))));