Sha256: 5c0222427230faabe184dfd8a700a54171e8aefa207aa957d7809d1bc4884dc1

Contents?: true

Size: 539 Bytes

Versions: 1

Compression:

Stored size: 539 Bytes

Contents

@mixin flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@mixin text-link {
  color: inherit;
  text-decoration: none;

  &:hover {
    color: inherit;
    text-decoration: underline;
  }
}

@mixin fontawesome-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-family: 'Font Awesome 5 Free';

  &::before {
    font-weight: 600;
  }
}

@mixin fontawesome-text {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
databook-theme-0.1.1 _sass/base/_mixins.scss