SearchBarPackage.css 541 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .SearchBar {
  2. display: flex;
  3. align-items: center;
  4. }
  5. .FrontSearch {
  6. background: #eeeeea;
  7. border-radius: -1px;
  8. padding: 3px 15px;
  9. box-shadow: 0px 0px 5px 1px #aaa;
  10. justify-content: center;
  11. width: 60%;
  12. margin:auto;
  13. }
  14. @media (max-width: 993px) {
  15. .FrontSearch {
  16. width: 100%;
  17. }
  18. }
  19. .SearchBar > div {
  20. flex-grow: 1;
  21. }
  22. .SearchBarPackage .autocomplete-content {
  23. position: absolute;
  24. width: 100%;
  25. }
  26. .SearchBar.small {
  27. width: 100%;
  28. max-width: 400px;
  29. }
  30. .SearchBar .input-field{
  31. margin: 0;
  32. }