LibraryButton.scss 493 B

1234567891011121314151617181920212223242526272829303132
  1. @import "../css/variables.module";
  2. .library-button {
  3. @include outlineButtonStyles;
  4. background-color: var(--island-bg-color);
  5. width: auto;
  6. height: var(--lg-button-size);
  7. display: flex;
  8. align-items: center;
  9. gap: 0.5rem;
  10. line-height: 0;
  11. font-size: 0.75rem;
  12. letter-spacing: 0.4px;
  13. svg {
  14. width: var(--lg-icon-size);
  15. height: var(--lg-icon-size);
  16. }
  17. &__label {
  18. display: none;
  19. @media screen and (min-width: 1024px) {
  20. display: block;
  21. }
  22. }
  23. }