Aside.style.js 237 B

12345678910
  1. import styled from "styled-components";
  2. export const AsideWrap = styled.aside`
  3. position: relative;
  4. z-index: 2;
  5. width: 100%;
  6. height: 100vh;
  7. // box-shadow: 0 0 10px -1px #BDBDBD;
  8. border-right: 1px solid #e9e9e9;
  9. `;