AppBar.style.js 615 B

12345678910111213141516171819202122232425262728
  1. import styled from "styled-components";
  2. export const SearchInput = styled.input`
  3. height: 32px;
  4. width: 100%;
  5. background-color: #f1f1f1;
  6. box-sizing: border-box;
  7. border-radius: 3px;
  8. border: none;
  9. padding: 0 10px;
  10. &::placeholder{
  11. color: #9b9b9b;
  12. letter-spacing: 0.5px;
  13. }
  14. &:focus{
  15. outline: none !important;
  16. border: 2px solid #00a6dd;
  17. background-color: #fff;
  18. }
  19. `;
  20. export const SearchAppBarWrapper = styled.div`
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. height: 54px;
  25. margin-right: 12px;
  26. `;