- added login page;

- added file upload;
- added faq item edit modal;
This commit is contained in:
Vitalii Kiiko
2024-08-23 16:55:19 +02:00
parent 0a21444ee4
commit 5095ed7365
50 changed files with 1540 additions and 576 deletions

View File

@@ -7,6 +7,7 @@
display: flex;
flex-direction: column;
gap: 14px;
padding: 5px 0;
label {
font-size: 14px;
@@ -40,14 +41,32 @@
}
}
}
.appForm__fileUploadItem {
display: flex;
justify-content: space-between;
}
.appForm__fileUploadItemName {
}
.appForm__row {
display: flex;
gap: 7px;
align-items: center;
}
.appForm__oneCol {
display: flex;
flex-direction: column;
gap: 7px;
label {
font-weight: 400;
}
}
.appForm__twoCols {
display: flex;
gap: 1rem;
@@ -99,4 +118,12 @@
.appForm__faqTabItem {
display: flex;
gap: 0.5rem;
align-items: center;
.p-togglebutton[data-p-highlight="true"] {
.p-button:not(.p-button-danger) {
background: var(--menuitem-active-background);
border: 1px solid var(--menuitem-active-background);
}
}
}