mirror of
https://github.com/wah-su/mstickers.git
synced 2025-05-04 11:59:35 +05:00
feat: add packs index generation
This commit is contained in:
parent
38dfc7f260
commit
ad42883956
5 changed files with 165 additions and 3 deletions
|
@ -689,6 +689,10 @@ video {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.flex-grow {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.-translate-x-1\/2 {
|
||||
--tw-translate-x: -50%;
|
||||
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));
|
||||
|
@ -704,10 +708,18 @@ video {
|
|||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.flex-col {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.items-center {
|
||||
align-items: center;
|
||||
}
|
||||
|
@ -724,6 +736,10 @@ video {
|
|||
gap: 1rem;
|
||||
}
|
||||
|
||||
.gap-1 {
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.overflow-x-hidden {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
@ -732,6 +748,19 @@ video {
|
|||
border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
.border-2 {
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.border-solid {
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.border-black {
|
||||
--tw-border-opacity: 1;
|
||||
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
||||
}
|
||||
|
||||
.bg-\[\#259d7b\] {
|
||||
--tw-bg-opacity: 1;
|
||||
background-color: rgb(37 157 123 / var(--tw-bg-opacity, 1));
|
||||
|
@ -834,6 +863,11 @@ video {
|
|||
line-height: 2.5rem;
|
||||
}
|
||||
|
||||
.text-xl {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.75rem;
|
||||
}
|
||||
|
||||
.text-gray-200 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(229 231 235 / var(--tw-text-opacity, 1));
|
||||
|
@ -869,6 +903,11 @@ video {
|
|||
color: rgb(244 244 245 / var(--tw-text-opacity, 1));
|
||||
}
|
||||
|
||||
.text-slate-200 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(226 232 240 / var(--tw-text-opacity, 1));
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration-line: underline;
|
||||
}
|
||||
|
@ -889,6 +928,10 @@ video {
|
|||
transition-duration: 150ms;
|
||||
}
|
||||
|
||||
.\[grid-template-columns\:100\%\] {
|
||||
grid-template-columns: 100%;
|
||||
}
|
||||
|
||||
.\[grid-template-columns\:repeat\(auto-fill\2c 96px\)\] {
|
||||
grid-template-columns: repeat(auto-fill,96px);
|
||||
}
|
||||
|
@ -933,6 +976,14 @@ video {
|
|||
.md\:whitespace-pre {
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.md\:\[grid-template-columns\:repeat\(auto-fill\2c 384px\)\] {
|
||||
grid-template-columns: repeat(auto-fill,384px);
|
||||
}
|
||||
|
||||
.md\:\[grid-template-columns\:repeat\(auto-fill\2c minmax\(380px\2c 500px\)\)\] {
|
||||
grid-template-columns: repeat(auto-fill,minmax(380px,500px));
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue