Files
stacjownik/src/styles/JournalStats.scss
T
2022-12-20 01:38:08 +01:00

50 lines
663 B
SCSS

@import 'variables.scss';
@import 'responsive.scss';
.stats-tab {
background-color: #1a1a1a;
padding: 1em;
margin-bottom: 1em;
min-height: 100px;
display: flex;
align-items: flex-end;
border-radius: 0 0 1em 1em;
}
.info-stats {
display: flex;
flex-wrap: wrap;
gap: 0.5em;
margin-top: 1em;
}
.stat-badge {
display: flex;
span {
background-color: $accentCol;
color: black;
font-weight: bold;
padding: 0.2em 0.5em;
}
span:first-child {
background-color: #333;
color: white;
}
}
@include smallScreen {
.journal-stats {
text-align: center;
}
.info-stats {
justify-content: center;
}
}