Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 15:09:16 +02:00
parent fd87720555
commit 9d38db1f59
3 changed files with 25 additions and 5 deletions

View File

@@ -167,6 +167,13 @@ body .price-table {
padding: 24px 0;
}
th {
&:nth-child(2) {
@media (max-width: 767px) {
display: none;
}
}
}
tr {
border-bottom: 1px solid rgb(37, 52, 71);
transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
@@ -183,16 +190,21 @@ body .price-table {
font-family: 'Inter Tight', sans-serif;
font-size: 24px;
letter-spacing: 2px;
text-transform: uppercase;
@media (min-width: 512px) {
font-size: 18px;
}
}
&:nth-child(2) {
display: none;
color: #f8f4f580;
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
text-transform: uppercase;
margin-top: 4px;
@media (min-width: 768px) {
display: none;
}
}
}
}
@@ -202,6 +214,10 @@ body .price-table {
font-size: 14px;
text-transform: uppercase;
margin-top: 4px;
@media (max-width: 767px) {
display: none;
}
}
&:nth-child(3) {
text-align: right;
@@ -211,6 +227,10 @@ body .price-table {
color: #d40924;
font-family: 'Inter Tight', sans-serif;
font-size: 30px;
@media (min-width: 512px) {
font-size: 20px;
}
}
&:nth-child(2) {
color: #f8f4f580;