Skip to content

Commit ca42576

Browse files
Merge pull request #2734 from shubhamkumar9199/fix/css-of-create-loan-provisioning
WEB-385-improve the css of create-loan-provisioning
2 parents b63b0e1 + 721fd13 commit ca42576

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
.container {
2+
padding: 0.5rem;
3+
max-width: 1200px;
4+
margin: 0 auto;
5+
}
6+
7+
.layout-row {
8+
display: flex;
9+
flex-direction: row;
10+
}
11+
12+
mat-card {
13+
padding: 1rem;
14+
box-shadow: 0 2px 8px rgb(0 0 0 / 10%) !important;
15+
border-radius: 8px;
16+
17+
.layout-row {
18+
margin-bottom: 0.5rem;
19+
}
20+
}
21+
22+
.mat-elevation-z1 {
23+
padding: 1rem;
24+
margin-top: 0.5rem;
25+
border-radius: 4px;
26+
}
27+
28+
table {
29+
width: 100%;
30+
31+
th {
32+
font-weight: 600;
33+
}
34+
}
35+
36+
.m-t-20 {
37+
margin-top: 2rem;
38+
}
39+
40+
.layout-align-center {
41+
align-items: center;
42+
justify-content: center;
43+
}
44+
45+
@media (width <= 768px) {
46+
.container {
47+
padding: 0.5rem;
48+
}
49+
50+
mat-card {
51+
padding: 1rem;
52+
}
53+
54+
.layout-row {
55+
flex-direction: column;
56+
}
57+
58+
.gap-20px {
59+
flex-direction: column;
60+
width: 100%;
61+
}
62+
}

0 commit comments

Comments
 (0)