readexpro/components/Nav.js
2019-09-13 16:10:51 -04:00

13 lines
211 B
JavaScript

import styled from "@emotion/styled";
export default styled("nav")`
border-bottom: 10px solid red;
position: fixed;
bottom: 0;
right: 0;
left: 0;
padding: 0 1rem;
display: flex;
z-index: 99;
`;