Skip to content

Commit cabeda9

Browse files
author
Javier Borrego
committed
Minor fixes and horizontal bar removed
1 parent 94f81ef commit cabeda9

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

client/src/app/site/pages/meetings/pages/participants/pages/mandate-check/components/mandate-check-list/mandate-check-list.component.html

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1 class="mock-h2" translate>Mandate check</h1>
2424
<h1 class="text-large-bold color-inherit">{{ entry.name }}</h1>
2525
<div>&nbsp;</div>
2626
</div>
27-
<div class="card-grid">
27+
<div class="card-grid" style="max-width: inherit; white-space: wrap">
2828
<!-- first row-->
2929
<div></div>
3030
<div class="flex-container align-left foreground-active">
@@ -76,18 +76,11 @@ <h2 class="text-large-bold color-inherit">
7676
@if (toggleGenderMap.get(entry.id)) {
7777
<div class="gender-map-grid">
7878
@for (gender of genders; track gender.id) {
79-
<div class="row">
80-
@if (entry.getTotalCount(gender.id)) {
81-
<!-- LEFT EMPTY -->
79+
@if (entry.getTotalCount(gender.id)) {
80+
<!-- LEFT EMPTY -->
81+
<div class="row">
8282
<div></div>
83-
<div
84-
class="foreground-active align-left"
85-
style="
86-
:not(:last-child) {
87-
border-bottom: 1px solid rgba(177, 177, 177, 0.637);
88-
}
89-
"
90-
>
83+
<div class="foreground-active align-left">
9184
@if (entry.getTotalCount(gender.id)) {
9285
<!-- FIRST VAL -->
9386
{{ entry.genderEntryMap.get(gender.id)?.present }}
@@ -112,8 +105,8 @@ <h2 class="text-large-bold color-inherit">
112105
</div>
113106
<!-- LEFT EMPTY -->
114107
<div></div>
115-
}
116-
</div>
108+
</div>
109+
}
117110
}
118111
</div>
119112
}
@@ -140,15 +133,15 @@ <h2 class="text-large-bold color-inherit">
140133
{{ 'Present' | translate }}
141134
</div>
142135
@for (userId of entry.presentUserIds; track userId) {
143-
<div class="margin-left-large text foreground-active">{{ getName(userId) }}</div>
136+
<div class="margin-left-medium text foreground-active">{{ getName(userId) }}</div>
144137
}
145138
</div>
146139
<div>
147140
<div class="bold margin-left-medium small-margin-top text">
148141
{{ 'Absent' | translate }}
149142
</div>
150143
@for (userId of entry.absentUserIds; track userId) {
151-
<div class="margin-left-large color-black">{{ getName(userId) }}</div>
144+
<div class="margin-left-medium color-black">{{ getName(userId) }}</div>
152145
}
153146
</div>
154147
</div>

client/src/app/site/pages/meetings/pages/participants/pages/mandate-check/components/mandate-check-list/mandate-check-list.component.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
grid-template-columns: 95% 5%;
4040
}
4141

42+
mat-card {
43+
overflow-block: auto;
44+
display: inline-flex;
45+
scrollbar-width: none;
46+
}
47+
4248
.card-grid {
4349
display: grid;
4450
white-space: nowrap;
@@ -101,7 +107,7 @@
101107
}
102108

103109
.margin-left-medium {
104-
margin-left: 70px;
110+
margin-left: 115px;
105111
}
106112

107113
.margin-bottom-20 {

0 commit comments

Comments
 (0)