Compare commits
No commits in common. "81d2ee409817037f780ab487d94bc0b5b6eed4a1" and "455be87e26ddef261c936bfd1496258eb88d0c70" have entirely different histories.
81d2ee4098
...
455be87e26
16
src/App.js
16
src/App.js
@ -106,15 +106,22 @@ const App = () => {
|
|||||||
<Route exact path="/candidate/:id/form" element={<FormPage />} />
|
<Route exact path="/candidate/:id/form" element={<FormPage />} />
|
||||||
<Route path="/:userId/calendar" element={<Calendar />} />
|
<Route path="/:userId/calendar" element={<Calendar />} />
|
||||||
|
|
||||||
|
<Route exact path="/report" element={<ReportForm />} />
|
||||||
<Route path="/report/:id" element={<SingleReportPage />} />
|
<Route path="/report/:id" element={<SingleReportPage />} />
|
||||||
|
|
||||||
|
<Route exact path="quiz">
|
||||||
|
<Route index element={<QuizPage />} />
|
||||||
|
<Route exact path="test/:uuid" element={<PassingTests />} />
|
||||||
|
<Route exact path="report/:uuid" element={<QuizReportPage />} />
|
||||||
|
</Route>
|
||||||
|
|
||||||
<Route exact path="profile">
|
<Route exact path="profile">
|
||||||
<Route index element={<Profile />} />
|
<Route index element={<Profile />} />
|
||||||
<Route exact path="catalog" element={<Home />} />
|
<Route exact path="catalog" element={<Home />} />
|
||||||
<Route exact path="calendar" element={<ProfileCalendar />} />
|
<Route exact path="calendar" element={<ProfileCalendar />} />
|
||||||
<Route exact path="calendar/report" element={<ReportForm />} />
|
<Route exact path="calendar/view/" element={<ProfileCalendar />} />
|
||||||
<Route exact path="calendar/view/:date/:id" element={<ViewReport />} />
|
|
||||||
<Route exact path="summary" element={<Summary />} />
|
<Route exact path="summary" element={<Summary />} />
|
||||||
|
<Route exact path="view/:date/:id" element={<ViewReport />} />
|
||||||
<Route exact path="tracker" element={<Tracker />} />
|
<Route exact path="tracker" element={<Tracker />} />
|
||||||
<Route exact path="statistics/:id" element={<Statistics/>}/>
|
<Route exact path="statistics/:id" element={<Statistics/>}/>
|
||||||
<Route exact path="payouts" element={<Payouts />} />
|
<Route exact path="payouts" element={<Payouts />} />
|
||||||
@ -126,11 +133,6 @@ const App = () => {
|
|||||||
<Route exact path="employees" element={<PartnerCategories />} />
|
<Route exact path="employees" element={<PartnerCategories />} />
|
||||||
<Route exact path="employees/report/:uuid" element={<PartnerEmployeeReport />} />
|
<Route exact path="employees/report/:uuid" element={<PartnerEmployeeReport />} />
|
||||||
<Route exact path="treaties" element={<PartnerTreaties />} />
|
<Route exact path="treaties" element={<PartnerTreaties />} />
|
||||||
<Route exact path="quiz">
|
|
||||||
<Route index element={<QuizPage />} />
|
|
||||||
<Route exact path="test/:uuid" element={<PassingTests />} />
|
|
||||||
<Route exact path="report/:uuid" element={<QuizReportPage />} />
|
|
||||||
</Route>
|
|
||||||
|
|
||||||
<Route
|
<Route
|
||||||
exact
|
exact
|
||||||
|
@ -60,7 +60,7 @@ const Calendar = () => {
|
|||||||
<img className="calendar__title-img" src={rectangle} alt="img" />
|
<img className="calendar__title-img" src={rectangle} alt="img" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Link to="/profile/calendar/report">
|
<Link to="/report">
|
||||||
<button className="calendar__btn">Заполнить отчет</button>
|
<button className="calendar__btn">Заполнить отчет</button>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { useSelector } from "react-redux";
|
import { useDispatch, useSelector } from "react-redux";
|
||||||
import { NavLink } from "react-router-dom";
|
import { NavLink } from "react-router-dom";
|
||||||
|
|
||||||
import { getProfileInfo } from "@redux/outstaffingSlice";
|
import { getProfileInfo } from "@redux/outstaffingSlice";
|
||||||
@ -9,8 +9,9 @@ import { urlForLocal } from "@utils/helper";
|
|||||||
import avatarMok from "assets/images/avatarMok.png";
|
import avatarMok from "assets/images/avatarMok.png";
|
||||||
|
|
||||||
export const Navigation = () => {
|
export const Navigation = () => {
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
const profileInfo = useSelector(getProfileInfo);
|
const profileInfo = useSelector(getProfileInfo);
|
||||||
const currentPath = window.location.pathname;
|
|
||||||
const [user] = useState(
|
const [user] = useState(
|
||||||
localStorage.getItem("role_status") === "18" ? "partner" : "developer"
|
localStorage.getItem("role_status") === "18" ? "partner" : "developer"
|
||||||
);
|
);
|
||||||
@ -34,7 +35,7 @@ export const Navigation = () => {
|
|||||||
name: "Выплаты"
|
name: "Выплаты"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/quiz",
|
path: "/Quiz",
|
||||||
name: "Тесты"
|
name: "Тесты"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -80,7 +81,6 @@ export const Navigation = () => {
|
|||||||
key={index}
|
key={index}
|
||||||
end
|
end
|
||||||
to={link.path === "/Quiz" ? link.path : `/profile${link.path}`}
|
to={link.path === "/Quiz" ? link.path : `/profile${link.path}`}
|
||||||
className={currentPath.includes(link.path) ? "active" : ""}
|
|
||||||
>
|
>
|
||||||
{link.name}
|
{link.name}
|
||||||
</NavLink>
|
</NavLink>
|
||||||
|
@ -98,7 +98,7 @@ export const ProfileCalendar = () => {
|
|||||||
{profileInfo.specification} разработчик
|
{profileInfo.specification} разработчик
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<Link to="/profile/calendar/report">
|
<Link to="/report">
|
||||||
<button
|
<button
|
||||||
className="calendar__btn"
|
className="calendar__btn"
|
||||||
onClick={() => dispatch(setReportDate(""))}
|
onClick={() => dispatch(setReportDate(""))}
|
||||||
|
@ -96,11 +96,9 @@ export const ProfileCalendarComponent = React.memo(
|
|||||||
)}-${correctDay(new Date(day).getDate())}` === date.created_at
|
)}-${correctDay(new Date(day).getDate())}` === date.created_at
|
||||||
) {
|
) {
|
||||||
if (userId) {
|
if (userId) {
|
||||||
return `/profile/calendar/view/${date.created_at}/${userId}`;
|
return `../view/${date.created_at}/${userId}`;
|
||||||
}
|
}
|
||||||
return `/profile/calendar/view/${
|
return `../view/${date.created_at}/${localStorage.getItem("id")}`;
|
||||||
date.created_at
|
|
||||||
}/${localStorage.getItem("id")}`;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,7 +106,7 @@ export const ProfileCalendarComponent = React.memo(
|
|||||||
return "#";
|
return "#";
|
||||||
}
|
}
|
||||||
|
|
||||||
return "/profile/calendar/report";
|
return "../../report";
|
||||||
}
|
}
|
||||||
|
|
||||||
const prevMonth = () => value.clone().subtract(1, "month");
|
const prevMonth = () => value.clone().subtract(1, "month");
|
||||||
@ -284,15 +282,15 @@ export const ProfileCalendarComponent = React.memo(
|
|||||||
? `${getCorrectDate(startDate)} - ${getCorrectDate(endDate)}`
|
? `${getCorrectDate(startDate)} - ${getCorrectDate(endDate)}`
|
||||||
: `${getCorrectDate(endDate)} - ${getCorrectDate(startDate)}`
|
: `${getCorrectDate(endDate)} - ${getCorrectDate(startDate)}`
|
||||||
: activePeriod
|
: activePeriod
|
||||||
? "Выберите диапазон на календаре"
|
? "Выберите диапазон на календаре"
|
||||||
: "Выбрать диапазон"}
|
: "Выбрать диапазон"}
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
{totalRangeHours
|
{totalRangeHours
|
||||||
? `${totalRangeHours} ${hourOfNum(totalRangeHours)}`
|
? `${totalRangeHours} ${hourOfNum(totalRangeHours)}`
|
||||||
: endDate
|
: endDate
|
||||||
? "0 часов"
|
? "0 часов"
|
||||||
: ""}
|
: ""}
|
||||||
</span>
|
</span>
|
||||||
{endDate && (
|
{endDate && (
|
||||||
<BaseButton
|
<BaseButton
|
||||||
|
@ -87,12 +87,10 @@ const ReportForm = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const handler = () => {
|
const handler = () => {
|
||||||
setIsFetching(true);
|
|
||||||
for (let input of inputs) {
|
for (let input of inputs) {
|
||||||
if (!input.task || !input.hours_spent) {
|
if (!input.task || !input.hours_spent) {
|
||||||
setReportSuccess("Заполните задачи");
|
setReportSuccess("Заполните задачи");
|
||||||
setTimeout(() => setReportSuccess(""), 2000);
|
setTimeout(() => setReportSuccess(""), 2000);
|
||||||
setIsFetching(false);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -294,16 +292,12 @@ const ReportForm = () => {
|
|||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-12">
|
<div className="col-12">
|
||||||
<div className="report-form__footer">
|
<div className="report-form__footer">
|
||||||
{isFetching ? (
|
<button
|
||||||
<Loader style={"green"} />
|
className="report-form__footer-btn"
|
||||||
) : (
|
onClick={() => handler()}
|
||||||
<button
|
>
|
||||||
className="report-form__footer-btn"
|
{isFetching ? <Loader /> : "Отправить"}
|
||||||
onClick={() => handler()}
|
</button>
|
||||||
>
|
|
||||||
Отпаравить
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
<p className="report-form__footer-text">
|
<p className="report-form__footer-text">
|
||||||
Всего за день:{" "}
|
Всего за день:{" "}
|
||||||
<span>
|
<span>
|
||||||
|
@ -80,9 +80,7 @@ export const ShortReport = () => {
|
|||||||
<h2 className="viewReport__title">
|
<h2 className="viewReport__title">
|
||||||
Ваши отчеты - <span>просмотр отчета за день</span>
|
Ваши отчеты - <span>просмотр отчета за день</span>
|
||||||
</h2>
|
</h2>
|
||||||
<Link to={`/profile/calendar/view/${dateCreate}`}>
|
<Link to={`../view/${dateCreate}`}>Посмотреть подробный отчет</Link>
|
||||||
Посмотреть подробный отчет
|
|
||||||
</Link>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="viewReport__bar">
|
<div className="viewReport__bar">
|
||||||
|
@ -9,11 +9,7 @@ export const CardAvailableTest = ({ title, description, path, status }) => {
|
|||||||
return (
|
return (
|
||||||
<div className="card-available-test">
|
<div className="card-available-test">
|
||||||
<Link
|
<Link
|
||||||
to={
|
to={status === 2 ? `/quiz/report/${path}` : `/quiz/test/${path}`}
|
||||||
status === 2
|
|
||||||
? `/profile/quiz/report/${path}`
|
|
||||||
: `/profile/quiz/test/${path}`
|
|
||||||
}
|
|
||||||
aria-disabled={true}
|
aria-disabled={true}
|
||||||
className="card-available-test__container"
|
className="card-available-test__container"
|
||||||
style={
|
style={
|
||||||
@ -37,7 +33,7 @@ export const CardAvailableTest = ({ title, description, path, status }) => {
|
|||||||
{status === 2 && (
|
{status === 2 && (
|
||||||
<div className="card-available-test__finished">
|
<div className="card-available-test__finished">
|
||||||
<p>Получить отчет по тестированию</p>
|
<p>Получить отчет по тестированию</p>
|
||||||
<Link to={`/profile/quiz/report/${path}`}>Отчет по тесту</Link>
|
<Link to={`/quiz/report/${path}`}>Отчет по тесту</Link>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -120,12 +120,12 @@ export const PassingTests = () => {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{/*{!startTest && (*/}
|
{!startTest && (
|
||||||
{/* <div className="passing-tests-page__block-text block-text">*/}
|
<div className="passing-tests-page__block-text block-text">
|
||||||
{/* ИЛИ <Link to={""}>выполните тестовое задание</Link>, без*/}
|
ИЛИ <Link to={""}>выполните тестовое задание</Link>, без
|
||||||
{/* прохождения тестов*/}
|
прохождения тестов
|
||||||
{/* </div>*/}
|
</div>
|
||||||
{/*)}*/}
|
)}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{completedTest && (
|
{completedTest && (
|
||||||
|
@ -144,10 +144,10 @@ export const QuizPage = () => {
|
|||||||
<h1>Анкет нет</h1>
|
<h1>Анкет нет</h1>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{/*<div className="block-text">*/}
|
<div className="block-text">
|
||||||
{/* ИЛИ <Link to={""}>выполните тестовое задание</Link>, без*/}
|
ИЛИ <Link to={""}>выполните тестовое задание</Link>, без
|
||||||
{/* прохождения тестов*/}
|
прохождения тестов
|
||||||
{/*</div>*/}
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{selectedCategory && (
|
{selectedCategory && (
|
||||||
|
@ -42,8 +42,8 @@ export const QuizReportPage = () => {
|
|||||||
<ProfileBreadcrumbs
|
<ProfileBreadcrumbs
|
||||||
links={[
|
links={[
|
||||||
{ name: "Главная", link: "/profile-candidate" },
|
{ name: "Главная", link: "/profile-candidate" },
|
||||||
{ name: "Тестирование", link: "/profile/quiz" },
|
{ name: "Тестирование", link: "/Quiz" },
|
||||||
{ name: "Отчет по тестированию", link: "/profile/quiz" }
|
{ name: "Отчет по тестированию", link: "/Quiz/report" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<div className="quiz-report-page__title main-title">
|
<div className="quiz-report-page__title main-title">
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { Link, useParams } from "react-router-dom";
|
import { Link, Navigate, useParams } from "react-router-dom";
|
||||||
|
|
||||||
import { apiRequest } from "@api/request";
|
import { apiRequest } from "@api/request";
|
||||||
|
|
||||||
@ -27,11 +27,9 @@ export const ViewReport = () => {
|
|||||||
const [taskText, setTaskText] = useState([]);
|
const [taskText, setTaskText] = useState([]);
|
||||||
const [difficulties, setDifficulties] = useState([]);
|
const [difficulties, setDifficulties] = useState([]);
|
||||||
const [tomorrowTask, setTomorrowTask] = useState([]);
|
const [tomorrowTask, setTomorrowTask] = useState([]);
|
||||||
const [taskId, setTaskId] = useState("");
|
|
||||||
const [totalHours, setTotalHours] = useState(0);
|
const [totalHours, setTotalHours] = useState(0);
|
||||||
const [currentDay] = useState(new Date());
|
const [currentDay] = useState(new Date());
|
||||||
const [loader, setLoader] = useState(false);
|
const [loader, setLoader] = useState(false);
|
||||||
const [deleteLoader, setDeleteLoader] = useState(false);
|
|
||||||
|
|
||||||
function getReportFromDate(day) {
|
function getReportFromDate(day) {
|
||||||
setLoader(true);
|
setLoader(true);
|
||||||
@ -41,7 +39,6 @@ export const ViewReport = () => {
|
|||||||
apiRequest(`reports/find-by-date?user_id=${params.id}&date=${day}`).then(
|
apiRequest(`reports/find-by-date?user_id=${params.id}&date=${day}`).then(
|
||||||
(res) => {
|
(res) => {
|
||||||
let spendTime = 0;
|
let spendTime = 0;
|
||||||
setTaskId(res[0]?.id);
|
|
||||||
for (const item of res) {
|
for (const item of res) {
|
||||||
if (item.difficulties) {
|
if (item.difficulties) {
|
||||||
setDifficulties((prevArray) => [...prevArray, item.difficulties]);
|
setDifficulties((prevArray) => [...prevArray, item.difficulties]);
|
||||||
@ -68,18 +65,6 @@ export const ViewReport = () => {
|
|||||||
nextReportDay.setDate(nextReportDay.getDate() + 1);
|
nextReportDay.setDate(nextReportDay.getDate() + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
function deleteReport() {
|
|
||||||
setDeleteLoader(true);
|
|
||||||
apiRequest(`reports/delete?id=${taskId}`, {
|
|
||||||
method: "DELETE"
|
|
||||||
}).then((res) => {
|
|
||||||
setDeleteLoader(false);
|
|
||||||
if (res) {
|
|
||||||
window.location.replace("/profile/calendar");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function nextDay() {
|
function nextDay() {
|
||||||
getReportFromDate(getCreatedDate(nextReportDay));
|
getReportFromDate(getCreatedDate(nextReportDay));
|
||||||
previousReportDay.setDate(previousReportDay.getDate() + 2);
|
previousReportDay.setDate(previousReportDay.getDate() + 2);
|
||||||
@ -125,32 +110,22 @@ export const ViewReport = () => {
|
|||||||
<img src={arrow} alt="#" />
|
<img src={arrow} alt="#" />
|
||||||
<p>Вернуться</p>
|
<p>Вернуться</p>
|
||||||
</Link>
|
</Link>
|
||||||
{localStorage.getItem("role_status") !== "18" && (
|
{/* <div className="viewReport__bar">
|
||||||
<div className="viewReport__bar">
|
<h3 className="viewReport__bar__date">
|
||||||
<button className="viewReport__bar__edit">Редактировать</button>
|
{getCorrectDate(dateReport.id)}
|
||||||
{deleteLoader ? (
|
</h3>
|
||||||
<Loader style={"green"} />
|
<p className="viewReport__bar__hours">
|
||||||
) : (
|
Вами потрачено на работу:{" "}
|
||||||
<button
|
<span>
|
||||||
onClick={deleteReport}
|
{totalHours} {hourOfNum(totalHours)}
|
||||||
className={
|
</span>
|
||||||
taskText.length
|
</p>
|
||||||
? "viewReport__bar__delete"
|
</div> */}
|
||||||
: "viewReport__bar__delete disable"
|
|
||||||
}
|
|
||||||
>
|
|
||||||
Удалить отчет
|
|
||||||
</button>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
<div className="viewReport__switch-date">
|
<div className="viewReport__switch-date">
|
||||||
<div onClick={() => previousDay()}>
|
<div onClick={() => previousDay()}>
|
||||||
<Link
|
<Link
|
||||||
to={`/profile/calendar/view/${getCreatedDate(
|
to={`../view/${getCreatedDate(previousReportDay)}/${params.id}`}
|
||||||
previousReportDay
|
|
||||||
)}/${params.id}`}
|
|
||||||
>
|
>
|
||||||
<div className="viewReport__switch-date__prev switch-date">
|
<div className="viewReport__switch-date__prev switch-date">
|
||||||
<img src={arrowSwitchDate} alt="arrow" />
|
<img src={arrowSwitchDate} alt="arrow" />
|
||||||
@ -166,11 +141,7 @@ export const ViewReport = () => {
|
|||||||
getCreatedDate(currentDay) === params.date ? "disable" : ""
|
getCreatedDate(currentDay) === params.date ? "disable" : ""
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<Link
|
<Link to={`../view/${getCreatedDate(nextReportDay)}/${params.id}`}>
|
||||||
to={`/profile/calendar/view/${getCreatedDate(nextReportDay)}/${
|
|
||||||
params.id
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
<div className={`viewReport__switch-date__next switch-date`}>
|
<div className={`viewReport__switch-date__next switch-date`}>
|
||||||
<img src={arrowSwitchDate} alt="arrow" />
|
<img src={arrowSwitchDate} alt="arrow" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -64,34 +64,71 @@
|
|||||||
height: 72px;
|
height: 72px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
button {
|
@media (max-width: 540px) {
|
||||||
color: #000000;
|
padding: 10px 15px;
|
||||||
font-size: 15px;
|
height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
column-gap: 0;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__date {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
font-size: 22px;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
padding: 8px 24px;
|
color: #000000;
|
||||||
|
|
||||||
|
@media (max-width: 660px) {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 490px) {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__edit {
|
&__hours {
|
||||||
background: #E1FCCF;
|
font-weight: 400;
|
||||||
border-radius: 44px;
|
font-size: 15px;
|
||||||
border: none;
|
line-height: 32px;
|
||||||
|
color: #000000;
|
||||||
|
|
||||||
|
@media (max-width: 660px) {
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #52B709;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__delete {
|
&__progressBar {
|
||||||
background: white;
|
max-width: 390px;
|
||||||
|
width: 100%;
|
||||||
|
background: #F1F1F1;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 1px dashed #8BCC60;
|
height: 8px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
span {
|
||||||
|
position: absolute;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
width: 60%;
|
||||||
|
background: #52B709;
|
||||||
|
border-radius: 12px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.disable {
|
&__total {
|
||||||
pointer-events: none;
|
font-weight: 400;
|
||||||
opacity: 0.5;
|
font-size: 12px;
|
||||||
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loader {
|
|
||||||
max-width: 150px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user