adaptive-candidate #6

Merged
nikita.gubar merged 2 commits from adaptive-candidate into main 2023-12-21 18:08:02 +03:00
2 changed files with 42 additions and 6 deletions

View File

@ -17,11 +17,11 @@ import { apiRequest } from "@api/request";
import "@components/Calendar/calendarComponent.scss"; import "@components/Calendar/calendarComponent.scss";
import { import {
calendarHelper, calendarHelper,
correctDay,
currentMonthAndDay, currentMonthAndDay,
getCorrectDate, getCorrectDate,
getReports, getReports,
hourOfNum, hourOfNum
correctDay
} from "@components/Calendar/calendarHelper"; } from "@components/Calendar/calendarHelper";
import BaseButton from "@components/Common/BaseButton/BaseButton"; import BaseButton from "@components/Common/BaseButton/BaseButton";
import ShortReport from "@components/ShortReport/ShortReport"; import ShortReport from "@components/ShortReport/ShortReport";

View File

@ -10,12 +10,32 @@
align-items: center; align-items: center;
margin-top: 55px; margin-top: 55px;
@media (max-width: 1375px) {
padding-top: 75px;
}
@media (max-width: 1024px) { @media (max-width: 1024px) {
padding-top: 70px; padding-top: 70px;
} }
.step { .step {
top: 36.5%; top: 36.5%;
@media (max-width: 1375px) {
top: 42%;
}
@media (max-width: 1072px) {
top: 32%;
}
@media (max-width: 1024px) {
top: 28%;
}
@media (max-width: 660px) {
top: 23%;
}
} }
} }
@ -27,6 +47,14 @@
background: #ffffff; background: #ffffff;
border-radius: 12px; border-radius: 12px;
width: 100%; width: 100%;
@media (max-width: 660px) {
flex-direction: column;
}
@media (max-width: 402px) {
align-items: center;
}
} }
&__info { &__info {
@ -87,6 +115,14 @@
flex-direction: column; flex-direction: column;
width: 46%; width: 46%;
@media (max-width: 1072px) {
width: 75%;
}
@media (max-width: 478px) {
width: 100%;
}
label { label {
font-weight: 400; font-weight: 400;
font-size: 15px; font-size: 15px;