style.less 428 B

1234567891011121314151617181920212223
  1. .notFound {
  2. width: 100%;
  3. height: 100%;
  4. padding-bottom: 30px;
  5. background: #FFFFFF;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. align-items: center;
  10. img {
  11. width: 350px;
  12. object-fit: cover;
  13. pointer-events: none;
  14. }
  15. &-text {
  16. font-size: 16px;
  17. font-weight: bold;
  18. color: @primary-color;
  19. margin-bottom: 20px;
  20. }
  21. }