errorblock.scss 409 B

123456789101112131415161718192021
  1. .errorblock {
  2. background: #ebebeb;
  3. display: -webkit-flex;
  4. display: -ms-flex;
  5. display: flex;
  6. flex-direction: row;
  7. align-items: center;
  8. padding: 25px;
  9. margin-bottom: 10px;
  10. &__img {
  11. margin-right: 20px;
  12. }
  13. &__text {
  14. font-size: 32px;
  15. color: #929292;
  16. font-family: $fontcuprum;
  17. font-weight: bold;
  18. line-height: 35px;
  19. }
  20. }