This commit is contained in:
Jordan Vidrine 2025-01-13 10:55:59 -06:00
parent 535aeba9fa
commit 9aef7c285a
3 changed files with 11 additions and 3 deletions

View File

@ -2,10 +2,16 @@
margin-bottom: 5em; margin-bottom: 5em;
.rewind-card { .rewind-card {
@include rewind-border; @include rewind-border;
@media screen and (width <= 425px) {
padding: 0.5em;
}
} }
.rewind-calendar { .rewind-calendar {
border-collapse: unset; border-collapse: unset;
border-spacing: 3px; border-spacing: 3px;
@media screen and (width <= 425px) {
border-spacing: 1px;
}
tr { tr {
border: none; border: none;
} }
@ -20,6 +26,10 @@
.rewind-calendar-cell { .rewind-calendar-cell {
height: 10px; height: 10px;
width: 10px; width: 10px;
@media screen and (width <= 425px) {
height: 5px;
width: 5px;
}
border-radius: calc(var(--rewind-border-radius) / 2); border-radius: calc(var(--rewind-border-radius) / 2);
border: 1px solid rgba(var(--primary-rgb), 0.2); border: 1px solid rgba(var(--primary-rgb), 0.2);
&.-empty { &.-empty {

View File

@ -28,9 +28,6 @@
flex-direction: column; flex-direction: column;
text-align: left; text-align: left;
max-width: 700px; max-width: 700px;
@media screen and (max-width: 425px) {
max-width: 90%;
}
@include rewind-border; @include rewind-border;
&.rank-1 { &.rank-1 {
--background: #ffe46a; --background: #ffe46a;

View File

@ -44,6 +44,7 @@
background: var(--secondary); background: var(--secondary);
@media (width <= 768px) { @media (width <= 768px) {
border: none; border: none;
border-radius: 0px;
} }
} }