_errors.scss 236 B

1234567891011121314151617
  1. // Error specific styling
  2. #error {
  3. text-align: center;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. height: 100%;
  8. padding-bottom: 6rem;
  9. h1 {
  10. font-size: $core-font-size + 4.0rem;
  11. }
  12. p {
  13. margin: 1rem 0;
  14. }
  15. }