index.module.scss 260 B

1234567891011121314151617
  1. @use "../theme";
  2. .searchButton {
  3. .largeScreenSearchButton {
  4. display: none;
  5. @include theme.breakpoint("md") {
  6. display: inline-flex;
  7. }
  8. }
  9. .smallScreenSearchButton {
  10. @include theme.breakpoint("md") {
  11. display: none;
  12. }
  13. }
  14. }