add bando page form;

This commit is contained in:
Vitalii Kiiko
2024-08-20 08:17:42 +02:00
parent 8616ae04b3
commit b4522f1580
14 changed files with 952 additions and 81 deletions

View File

@@ -7,4 +7,88 @@
display: flex;
flex-direction: column;
gap: 14px;
label {
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
span {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-left: 10px;
}
}
small {
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 21px;
}
&.datepicker, &.formfieldrepeater, &.datepickerrange, &.fileupload {
.p-button:not(.p-button-danger) {
background: var(--button-secondary-background);
border: 1px solid var(--button-secondary-borderColor);
}
.p-button:not(:disabled, .p-button-danger):hover {
background: var(--button-secondary-borderColor);
}
}
}
.appForm__twoCols {
display: flex;
gap: 1rem;
justify-content: space-between;
flex-wrap: wrap;
> div {
flex: 1 1 auto;
min-width: 300px;
max-width: 700px;
display: flex;
flex-direction: column;
gap: 14px;
label {
font-weight: 400;
}
}
}
.appForm__repeaterItem {
padding: 0.5rem 0.5rem 0.5rem 1rem;
border-left: 3px solid #dadada;
&:hover {
border-color: var(--button-secondary-background);
background: #FCF7E7;
}
}
.appForm__faqHeaderControls {
display: flex;
gap: 1rem;
button {
flex: 0 0 auto;
}
> div {
flex: 1 1 auto;
}
}
.appForm__faqTab {
display: flex;
justify-content: space-between;
gap: 1rem;
}
.appForm__faqTabItem {
display: flex;
gap: 0.5rem;
}

View File

@@ -35,6 +35,7 @@
flex-direction: column;
gap: 14px;
padding: 28px;
border-left: 4px solid var(--card-borderColor-color);
h1, h2, h3 {
margin: 0;
@@ -64,4 +65,11 @@
display: flex;
gap: 24px;
margin-bottom: 24px;
}
.mb-2 {
margin-bottom: 4px;
}
.mb-8 {
margin-bottom: 16px;
}