Skip to content

Commit 8c5013f

Browse files
committed
provider_dashboard_fix: Modified stylings for ClientDashboard
1 parent c31c01d commit 8c5013f

File tree

1 file changed

+32
-1
lines changed
  • amp-client/src/Pages/ClientPages/ClientDashboard

1 file changed

+32
-1
lines changed

amp-client/src/Pages/ClientPages/ClientDashboard/styles.css

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,14 @@
4343
}
4444

4545
.chart-widget {
46-
flex: 1;
46+
flex: 1;
47+
height: 350px;
48+
display: flex;
49+
flex-direction: column;
50+
justify-content: flex-end;
4751
background-color: #fff;
4852
padding: 15px;
53+
margin-top: 10px;
4954
border-radius: 8px;
5055
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
5156
border: 1px solid #eee;
@@ -78,3 +83,29 @@
7883
font-weight: bold;
7984
color: #198754;
8085
}
86+
87+
.spinner-container {
88+
display: flex;
89+
flex-direction: column;
90+
align-items: center;
91+
justify-content: center;
92+
height: 150px;
93+
color: #555;
94+
width: 100%;
95+
}
96+
97+
.spinner {
98+
width: 40px;
99+
height: 40px;
100+
border: 4px solid rgba(0, 0, 0, 0.1);
101+
border-left-color: #f9a43a;
102+
border-radius: 50%;
103+
animation: spin 1s linear infinite;
104+
margin-bottom: 10px;
105+
}
106+
107+
@keyframes spin {
108+
to {
109+
transform: rotate(360deg);
110+
}
111+
}

0 commit comments

Comments
 (0)