You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
535 B

  1. // Copyright (c) 2018 Tildes contributors <code@tildes.net>
  2. // SPDX-License-Identifier: AGPL-3.0-or-later
  3. // shrinks a font size by 0.1rem on mobile screen sizes
  4. @mixin font-shrink-on-mobile($base-size) {
  5. font-size: $base-size - 0.1rem;
  6. @media (min-width: $size-md) {
  7. font-size: $base-size;
  8. }
  9. }
  10. // makes sure the element is the "minimum touch size" on mobile
  11. @mixin min-touch-size() {
  12. min-width: $min-touch-size;
  13. min-height: $min-touch-size;
  14. @media (min-width: $size-md) {
  15. min-width: 0;
  16. min-height: 0;
  17. }
  18. }