proustibat/tic-tac-toe

View on GitHub
src/styles/page-dashboard.scss

Summary

Maintainability
Test Coverage
.page-dashboard {
  h2 {
    font-size: 2rem;
    padding: 1rem;
  }

  .sections {
    background: $light-grey;
    padding: 2rem;
    border-radius: 0.2rem;
  }

  section {
    margin-bottom: 2rem;

    &:last-child {
      margin: 0;
    }
  }

  h3 {
    font-size: 1.6rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
    border-bottom: 1px solid $color-light;
  }

  h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
  }

  p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  a {
    margin: 0.1rem;

    @include for-size(phone-only) {
      display: block;
      width: min-content;
    }
  }
}