mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-07-08 06:32:46 +00:00
increase trigger for media query
This commit is contained in:
parent
0d25800241
commit
68097b3120
@ -2,14 +2,14 @@
|
|||||||
margin-bottom: 5em;
|
margin-bottom: 5em;
|
||||||
.rewind-card {
|
.rewind-card {
|
||||||
@include rewind-border;
|
@include rewind-border;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.rewind-calendar {
|
.rewind-calendar {
|
||||||
border-collapse: unset;
|
border-collapse: unset;
|
||||||
border-spacing: 3px;
|
border-spacing: 3px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
border-spacing: 1px;
|
border-spacing: 1px;
|
||||||
}
|
}
|
||||||
tr {
|
tr {
|
||||||
@ -26,7 +26,7 @@
|
|||||||
.rewind-calendar-cell {
|
.rewind-calendar-cell {
|
||||||
height: 10px;
|
height: 10px;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
height: 5px;
|
height: 5px;
|
||||||
width: 5px;
|
width: 5px;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.best-posts__post {
|
.best-posts__post {
|
||||||
@media screen and (max-width: 425px) {
|
@media screen and (max-width: 475px) {
|
||||||
max-height: 300px;
|
max-height: 300px;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -70,7 +70,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: var(--primary-800);
|
color: var(--primary-800);
|
||||||
@media screen and (max-width: 425px) {
|
@media screen and (max-width: 475px) {
|
||||||
font-size: var(--font-down-2);
|
font-size: var(--font-down-2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: var(--primary-800);
|
color: var(--primary-800);
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@media screen and (max-width: 425px) {
|
@media screen and (max-width: 475px) {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-size: var(--font-down-2);
|
font-size: var(--font-down-2);
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
@media screen and (max-width: 525px) {
|
@media screen and (max-width: 525px) {
|
||||||
font-size: var(--font-up-2);
|
font-size: var(--font-up-2);
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 425px) {
|
@media screen and (max-width: 475px) {
|
||||||
font-size: var(--font-up-0);
|
font-size: var(--font-up-0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -40,86 +40,3 @@
|
|||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pixel-corners,
|
|
||||||
.pixel-corners--wrapper {
|
|
||||||
clip-path: polygon(
|
|
||||||
0px calc(100% - 20px),
|
|
||||||
4px calc(100% - 20px),
|
|
||||||
4px calc(100% - 12px),
|
|
||||||
8px calc(100% - 12px),
|
|
||||||
8px calc(100% - 8px),
|
|
||||||
12px calc(100% - 8px),
|
|
||||||
12px calc(100% - 4px),
|
|
||||||
20px calc(100% - 4px),
|
|
||||||
20px 100%,
|
|
||||||
calc(100% - 20px) 100%,
|
|
||||||
calc(100% - 20px) calc(100% - 4px),
|
|
||||||
calc(100% - 12px) calc(100% - 4px),
|
|
||||||
calc(100% - 12px) calc(100% - 8px),
|
|
||||||
calc(100% - 8px) calc(100% - 8px),
|
|
||||||
calc(100% - 8px) calc(100% - 12px),
|
|
||||||
calc(100% - 4px) calc(100% - 12px),
|
|
||||||
calc(100% - 4px) calc(100% - 20px),
|
|
||||||
100% calc(100% - 20px),
|
|
||||||
100% 20px,
|
|
||||||
calc(100% - 4px) 20px,
|
|
||||||
calc(100% - 4px) 12px,
|
|
||||||
calc(100% - 8px) 12px,
|
|
||||||
calc(100% - 8px) 8px,
|
|
||||||
calc(100% - 12px) 8px,
|
|
||||||
calc(100% - 12px) 4px,
|
|
||||||
calc(100% - 20px) 4px,
|
|
||||||
calc(100% - 20px) 0px,
|
|
||||||
20px 0px,
|
|
||||||
20px 4px,
|
|
||||||
12px 4px,
|
|
||||||
12px 8px,
|
|
||||||
8px 8px,
|
|
||||||
8px 12px,
|
|
||||||
4px 12px,
|
|
||||||
4px 20px,
|
|
||||||
0px 20px
|
|
||||||
);
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.pixel-corners {
|
|
||||||
border: 4px solid transparent;
|
|
||||||
}
|
|
||||||
.pixel-corners--wrapper {
|
|
||||||
width: fit-content;
|
|
||||||
height: fit-content;
|
|
||||||
}
|
|
||||||
.pixel-corners--wrapper .pixel-corners {
|
|
||||||
display: block;
|
|
||||||
clip-path: polygon(
|
|
||||||
4px 20px,
|
|
||||||
8px 20px,
|
|
||||||
8px 12px,
|
|
||||||
12px 12px,
|
|
||||||
12px 8px,
|
|
||||||
20px 8px,
|
|
||||||
20px 4px,
|
|
||||||
calc(100% - 20px) 4px,
|
|
||||||
calc(100% - 20px) 8px,
|
|
||||||
calc(100% - 12px) 8px,
|
|
||||||
calc(100% - 12px) 12px,
|
|
||||||
calc(100% - 8px) 12px,
|
|
||||||
calc(100% - 8px) 20px,
|
|
||||||
calc(100% - 4px) 20px,
|
|
||||||
calc(100% - 4px) calc(100% - 20px),
|
|
||||||
calc(100% - 8px) calc(100% - 20px),
|
|
||||||
calc(100% - 8px) calc(100% - 12px),
|
|
||||||
calc(100% - 12px) calc(100% - 12px),
|
|
||||||
calc(100% - 12px) calc(100% - 8px),
|
|
||||||
calc(100% - 20px) calc(100% - 8px),
|
|
||||||
calc(100% - 20px) calc(100% - 4px),
|
|
||||||
20px calc(100% - 4px),
|
|
||||||
20px calc(100% - 8px),
|
|
||||||
12px calc(100% - 8px),
|
|
||||||
12px calc(100% - 12px),
|
|
||||||
8px calc(100% - 12px),
|
|
||||||
8px calc(100% - 20px),
|
|
||||||
4px calc(100% - 20px)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
@media screen and (width <= 768px) {
|
@media screen and (width <= 768px) {
|
||||||
--border-size: 4px;
|
--border-size: 4px;
|
||||||
}
|
}
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
--border-size: 3px;
|
--border-size: 3px;
|
||||||
}
|
}
|
||||||
.fbff-gif-container {
|
.fbff-gif-container {
|
||||||
@ -51,7 +51,7 @@
|
|||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
@ -69,7 +69,7 @@
|
|||||||
height: min-content;
|
height: min-content;
|
||||||
font-size: var(--font-down-1);
|
font-size: var(--font-down-1);
|
||||||
font-family: Pixelify Sans;
|
font-family: Pixelify Sans;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
font-size: var(--font-down-3);
|
font-size: var(--font-down-3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
gap: 0.125em;
|
gap: 0.125em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -87,7 +87,7 @@
|
|||||||
padding: 0.65em;
|
padding: 0.65em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
.scale {
|
.scale {
|
||||||
width: min-content;
|
width: min-content;
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
.book {
|
.book {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
height: 200px;
|
height: 200px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 133px;
|
height: 133px;
|
||||||
}
|
}
|
||||||
@ -31,7 +31,7 @@ p.reading-time__text {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
height: 200px;
|
height: 200px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 133px;
|
height: 133px;
|
||||||
}
|
}
|
||||||
@ -49,7 +49,7 @@ p.reading-time__text {
|
|||||||
top: 4px;
|
top: 4px;
|
||||||
width: 33px;
|
width: 33px;
|
||||||
height: 192px;
|
height: 192px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
left: -43px;
|
left: -43px;
|
||||||
width: 22px;
|
width: 22px;
|
||||||
height: 125px;
|
height: 125px;
|
||||||
@ -91,7 +91,7 @@ p.reading-time__text {
|
|||||||
transform: translateZ(-17.5px);
|
transform: translateZ(-17.5px);
|
||||||
background-color: var(--book-color);
|
background-color: var(--book-color);
|
||||||
border-radius: 0 5px 5px 0;
|
border-radius: 0 5px 5px 0;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 133px;
|
height: 133px;
|
||||||
}
|
}
|
||||||
@ -100,7 +100,7 @@ p.reading-time__text {
|
|||||||
.reading-time__text {
|
.reading-time__text {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
font-size: var(--font-down-2);
|
font-size: var(--font-down-2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -108,7 +108,7 @@ p.reading-time__text {
|
|||||||
.reading-time .rewind-card {
|
.reading-time .rewind-card {
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
padding: 1.5em;
|
padding: 1.5em;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
padding: 0.75em;
|
padding: 0.75em;
|
||||||
}
|
}
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
@media screen and (width <= 625px) {
|
@media screen and (width <= 625px) {
|
||||||
width: 115px;
|
width: 115px;
|
||||||
}
|
}
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 125px;
|
height: 125px;
|
||||||
}
|
}
|
||||||
@ -145,7 +145,7 @@
|
|||||||
img {
|
img {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
width: 15px;
|
width: 15px;
|
||||||
}
|
}
|
||||||
@ -156,7 +156,7 @@
|
|||||||
img {
|
img {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
}
|
}
|
||||||
@ -168,7 +168,7 @@
|
|||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
@media screen and (width <= 425px) {
|
@media screen and (width <= 475px) {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
width: 15px;
|
width: 15px;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user