logo.scss 389 B

123456789101112131415161718192021222324
  1. .antooza-logo {
  2. display: inline-block;
  3. font-family: var(--font-brand), 'Archivo Black', system-ui, sans-serif;
  4. font-weight: 400;
  5. letter-spacing: -0.03em;
  6. line-height: 1;
  7. color: inherit;
  8. -webkit-user-select: none;
  9. -moz-user-select: none;
  10. -ms-user-select: none;
  11. user-select: none;
  12. &--sm {
  13. font-size: 1.5rem;
  14. }
  15. &--md {
  16. font-size: 2rem;
  17. }
  18. &--lg {
  19. font-size: 3rem;
  20. }
  21. }