Skip to content

Commit 67b4dc9

Browse files
authored
Merge pull request #2281 from gordon-cs/days-left
Added Days Left Progress Bar
2 parents 695c703 + c03bae0 commit 67b4dc9

File tree

5 files changed

+470
-70
lines changed

5 files changed

+470
-70
lines changed

package-lock.json

Lines changed: 277 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"@azure/msal-react": "^2.0.12",
99
"@emotion/react": "^11.11.3",
1010
"@emotion/styled": "^11.10.8",
11+
"@material-ui/core": "^4.12.4",
1112
"@mui/icons-material": "^5.15.10",
1213
"@mui/material": "^5.15.10",
1314
"@mui/x-date-pickers": "^6.19.4",
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
@import '../../../../vars';
2+
3+
.backContainer {
4+
position: relative;
5+
width: 100%;
6+
height: 50px;
7+
display: flex;
8+
justify-content: center;
9+
align-items: center;
10+
overflow: hidden;
11+
background-color: var(--mui-palette-neutral-light);
12+
border-radius: 5px;
13+
color: var(--mui-palette-link-main);
14+
font-weight: bold;
15+
font-size: 1rem;
16+
}
17+
18+
.frontContainer {
19+
position: relative;
20+
width: 100%;
21+
height: 50px;
22+
display: flex;
23+
justify-content: center;
24+
align-items: center;
25+
background-color: var(--mui-palette-primary-main);
26+
border-radius: 5px;
27+
color: white;
28+
font-weight: bold;
29+
font-size: 1rem;
30+
}
31+
32+
.boundBox {
33+
position: absolute;
34+
left: 0;
35+
top: 0;
36+
overflow: hidden;
37+
border-radius: 5px;
38+
}

0 commit comments

Comments
 (0)