Aside.style.js 813 B

12345678910111213141516171819202122232425262728293031323334353637
  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. `;
  10. export const SearchInput = styled.input`
  11. height: 32px;
  12. width: 100%;
  13. background-color: #f1f1f1;
  14. box-sizing: border-box;
  15. border-radius: 3px;
  16. border: none;
  17. padding: 0 10px;
  18. &::placeholder{
  19. color: #9b9b9b;
  20. letter-spacing: 0.5px;
  21. }
  22. &:focus{
  23. outline: none !important;
  24. border: 2px solid #00a6dd;
  25. background-color: #fff;
  26. }
  27. `;
  28. export const SearchAppBarWrapper = styled.div`
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. height: 54px;
  33. margin-right: 12px;
  34. `;