Skip to content

Commit efc6461

Browse files
Merge pull request #2683 from shubhamkumar9199/fix/css-of-manage-group-members
WEB-325-fix(css): update styles for manage-group-members page
2 parents a4f8feb + 8e14ba7 commit efc6461

File tree

1 file changed

+44
-3
lines changed

1 file changed

+44
-3
lines changed

src/app/groups/groups-view/group-actions/manage-group-members/manage-group-members.component.scss

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33

44
.mat-table {
55
display: block;
6-
font-family: Tahoma, Verdana, sans-serif;
6+
font-family: Roboto, 'Helvetica Neue', sans-serif;
77
width: 100%;
8+
margin-top: -2rem;
9+
padding: 1.5rem;
810
}
911

1012
.mat-row,
1113
.mat-header-row {
1214
display: flex;
13-
border-bottom-width: 1px;
14-
border-bottom-style: solid;
15+
border-bottom: 1px solid var(--border-color-light, #eee);
16+
color: var(--text-color, inherit);
17+
font-weight: 500;
1518
align-items: center;
1619
min-height: 48px;
1720
padding: 0 24px;
@@ -22,14 +25,52 @@
2225
flex: 1;
2326
overflow: hidden;
2427
word-wrap: break-word;
28+
flex-direction: column;
2529
}
2630

2731
h3 {
2832
padding-left: 0;
2933
margin-bottom: 0;
34+
font-weight: 500;
35+
border-bottom: 2px solid var(--border-color-light, #eee);
36+
}
37+
38+
.p-t-10 {
39+
font-weight: 500;
40+
margin-left: 1rem;
3041
}
3142

3243
.client-card {
3344
max-height: 20rem;
45+
margin-bottom: 1rem;
46+
padding: 1.5rem;
47+
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
48+
border: 1px solid var(--border-color, #ddd);
49+
border-radius: 8px;
50+
transition:
51+
background-color 0.3s ease,
52+
border-color 0.3s ease;
53+
}
54+
55+
.flex-50 {
56+
max-height: 20rem;
57+
margin-bottom: 1rem;
58+
padding: 1.5rem;
59+
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
60+
border: 1px solid var(--border-color, #ddd);
61+
border-radius: 8px;
62+
transition:
63+
background-color 0.3s ease,
64+
border-color 0.3s ease;
65+
}
66+
67+
.flex-50 button {
68+
left: 0;
69+
}
70+
71+
.flex-fill {
72+
margin-top: 0.5rem;
73+
display: inline;
74+
font-weight: 500;
3475
}
3576
}

0 commit comments

Comments
 (0)