- added page managebandi;
- improved styles of the pages and sections;
This commit is contained in:
44
src/assets/scss/components/statsBigBadges.scss
Normal file
44
src/assets/scss/components/statsBigBadges.scss
Normal file
@@ -0,0 +1,44 @@
|
||||
.statsBigBadges {
|
||||
}
|
||||
.statsBigBadges__grid {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.statsBigBadges__gridItem {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 28px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--yellow-500);
|
||||
background: var(--card-full-background-color-2);
|
||||
align-items: center;
|
||||
gap: 48px;
|
||||
|
||||
span {
|
||||
color: #FFF;
|
||||
font-size: 21px;
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
span:nth-last-of-type(1) {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
&:nth-of-type(2) {
|
||||
border: 1px solid var(--yellow-500);
|
||||
background: var(--card-full-background-color-3);
|
||||
}
|
||||
&:nth-of-type(3) {
|
||||
border: 1px solid var(--yellow-500);
|
||||
background: var(--card-full-background-color-4);
|
||||
}
|
||||
&:nth-of-type(4) {
|
||||
border: 1px solid var(--yellow-500);
|
||||
background: var(--card-full-background-color-1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user