RyanofWoods/rails-react-swedish-birds

View on GitHub
app/assets/stylesheets/components/_page_title.scss

Summary

Maintainability
Test Coverage
#page-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid $dark-brown;
  margin-bottom: 1rem;

  * {
    margin-bottom: 0.25rem;
  }

  h3 {
    align-self: flex-end;
    margin-left: 2.5rem;
    
    span {
      font-size: 40px;
      font-weight: 700;
    }
  }
  @include media-breakpoint-down(sm) {
    h1 {
     font-size: 34px;
    }
    h3 {
      span {
        font-size: 24px;
      }
      font-size: 16px;
      margin-left: 1rem;
    }
  }
}