- added stats to dashboard;

- improved form builder;
This commit is contained in:
Vitalii Kiiko
2024-10-14 16:17:30 +02:00
parent 7751e3a745
commit 49765c98e6
10 changed files with 177 additions and 28 deletions

View File

@@ -106,8 +106,16 @@
}
}
.formBuilder__elementNew {
border: 1px solid var(--button-secondary-borderColor);
background-color: var(--button-secondary-borderColor);
width: 100%;
padding: 10px;
opacity: 0.6;
}
.formBuilder__aside {
flex: 0 0 250px;
flex: 0 0 200px;
display: flex;
flex-direction: column;
@@ -141,6 +149,7 @@
&:hover {
cursor: grab;
background-color: #F4E8C3;
}
}

View File

@@ -112,4 +112,19 @@ img {
}
}
}
}
@media (max-width: 800px) {
.inner {
flex-direction: column;
> aside {
flex: 0 0 auto;
margin-bottom: 50px;
}
> main {
width: 100%;
}
}
}

View File

@@ -50,6 +50,14 @@
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-1);
}
&:nth-of-type(5) {
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-5);
}
&:nth-of-type(6) {
border: 1px solid var(--yellow-500);
background: var(--card-full-background-color-6);
}
}
@media (max-width: 820px) {