@parkassist/pa-ui-library
Version:
INX Platform elements
14 lines • 423 B
JavaScript
import { Row } from "./Flex";
import Measures from "../../constants/Measures";
import Palette from "../../constants/Palette";
import styled from "styled-components";
export default styled(Row)`
position: fixed;
width: calc(100vw - 65px);
height: ${Measures.topBarHeight};
top: 0;
left: 60px;
padding: ${Measures.unit} 10px ${Measures.unit} ${Measures.sideBarWidth};
z-index: 999;
color: ${Palette.WHITE};
`;