Compare commits

...

2 Commits

Author SHA1 Message Date
Victor Batischev
f9aa37fec6 add quiz link to sidebar 2024-01-10 18:46:28 +03:00
Victor Batischev
a2270ee6b9 registraion modal adaptive 2024-01-10 18:40:14 +03:00
4 changed files with 16 additions and 8 deletions

View File

@ -1,5 +1,5 @@
.modal-layout { .modal-layout {
z-index: 9; z-index: 9999;
height: 100%; height: 100%;
width: 100%; width: 100%;
background-color: rgba(0, 0, 0, 0.8); background-color: rgba(0, 0, 0, 0.8);

View File

@ -13,7 +13,8 @@
} }
@media (max-width: 703px) { @media (max-width: 703px) {
top: 7%; top: 0;
z-index: 1;
padding: 20px 10px 20px 10px; padding: 20px 10px 20px 10px;
} }
@ -42,14 +43,17 @@
} }
@media (max-width: 703px) { @media (max-width: 703px) {
flex-direction: column;
align-items: center; align-items: center;
font-size: 20px; font-size: 20px;
} }
span { span {
color: #52b709; color: #52b709;
margin: 0 0 0 10px; margin-left: 10px;
@media (max-width: 703px) {
margin-left: 5px;
}
} }
} }
@ -67,11 +71,12 @@
@media (max-width: 703px) { @media (max-width: 703px) {
margin: 10px 0 0 0; margin: 10px 0 0 0;
line-height: 20px;
} }
} }
.input-body { .input-body {
margin: 44px 0 0 0; margin-top: 44px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
@ -80,7 +85,7 @@
@media (max-width: 703px) { @media (max-width: 703px) {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin: 22px 0 0 0; margin-top: 10px;
} }
&__box { &__box {

View File

@ -742,8 +742,8 @@
.exit { .exit {
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
top: 20px; top: 10px;
right: 20px; right: 10px;
width: 13px; width: 13px;
height: 13px; height: 13px;
display: flex; display: flex;

View File

@ -55,6 +55,9 @@ export const SideBar = () => {
<li> <li>
<Link to={"/tracker-intro"}>Трекер</Link> <Link to={"/tracker-intro"}>Трекер</Link>
</li> </li>
<li>
<Link to={"/quiz"}>Тесты</Link>
</li>
<li> <li>
<a href="#">Школа</a> <a href="#">Школа</a>
</li> </li>