refactor: Links section

This commit is contained in:
Kentai Radiquum 2025-01-10 19:00:35 +05:00
parent 133ebb443f
commit 829eb685b2
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 265 additions and 177 deletions

View file

@ -696,6 +696,10 @@ video {
order: 4;
}
.col-span-2 {
grid-column: span 2 / span 2;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
@ -778,6 +782,10 @@ video {
height: 100%;
}
.h-\[170px\] {
height: 170px;
}
.max-h-\[182px\] {
max-height: 182px;
}
@ -831,14 +839,30 @@ video {
width: max-content;
}
.min-w-\[170px\] {
min-width: 170px;
}
.max-w-\[50vw\] {
max-width: 50vw;
}
.max-w-\[170px\] {
max-width: 170px;
}
.flex-1 {
flex: 1 1 0%;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-grow {
flex-grow: 1;
}
.-translate-y-full {
--tw-translate-y: -100%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@ -1353,6 +1377,10 @@ video {
filter: darken(10%);
}
.\[grid-template-columns\:1fr_1fr\] {
grid-template-columns: 1fr 1fr;
}
@font-face {
font-family: 'Inter';
@ -1433,6 +1461,10 @@ body {
flex: 1 1 0%;
}
.xs\:flex-grow {
flex-grow: 1;
}
.xs\:\[flex-grow\:1\] {
flex-grow: 1;
}
@ -1577,6 +1609,10 @@ body {
width: auto;
}
.md\:w-\[170px\] {
width: 170px;
}
.md\:grid-cols-fluid {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@ -1634,6 +1670,10 @@ body {
flex-direction: row;
}
.lg\:gap-4 {
gap: 1rem;
}
.lg\:text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
@ -1643,6 +1683,14 @@ body {
font-size: 3.75rem;
line-height: 1;
}
.lg\:\[grid-column\:span_2\] {
grid-column: span 2;
}
.lg\:\[span\:2\] {
span: 2;
}
}
@media (min-width: 1280px) {
@ -1662,6 +1710,14 @@ body {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.xl\:flex-col {
flex-direction: column;
}
.xl\:gap-1 {
gap: 0.25rem;
}
.xl\:text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
@ -1676,6 +1732,14 @@ body {
font-size: 4.5rem;
line-height: 1;
}
.xl\:\[grid-column\:1\] {
grid-column: 1;
}
.xl\:\[grid-column\:4\] {
grid-column: 4;
}
}
@media (min-width: 1536px) {