- page benficiary domanda/soccorso;

- fixed fetching data in overview tables for beneficiary/pre instructor;
- fixed styles;
This commit is contained in:
Vitalii Kiiko
2024-11-07 16:19:09 +01:00
parent 8ae4b720e5
commit 5e44b1f268
18 changed files with 1045 additions and 264 deletions

View File

@@ -208,13 +208,18 @@
flex-direction: column;
padding: 0;
li {
> li {
padding: 15px;
border-bottom: 1px solid var(--button-secondary-borderColor);
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
gap: 1rem;
&.row {
flex-direction: row;
}
}
}
@@ -237,7 +242,7 @@
.appPageSection__message {
display: flex;
align-items: center;
gap: 7px;
gap: 20px;
background: rgba(255, 242, 226, 0.7);
border-style: solid;
border-width: 0 0 0 6px;

View File

@@ -0,0 +1,18 @@
.criterionRelatedData {
display: flex;
flex-direction: column;
gap: 15px;
max-height: 400px;
overflow-y: auto;
padding: 0 0 10px 0;
> h3 {
margin: 0;
}
}
.criterionRelatedData__item {
display: flex;
flex-direction: column;
gap: 7px;
}