| 1234567891011121314151617181920212223 |
- .notFound {
- width: 100%;
- height: 100%;
- padding-bottom: 30px;
- background: #FFFFFF;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- img {
- width: 350px;
- object-fit: cover;
- pointer-events: none;
- }
- &-text {
- font-size: 16px;
- font-weight: bold;
- color: @primary-color;
- margin-bottom: 20px;
- }
- }
|