add sticker packs index

This commit is contained in:
Kentai Radiquum 2024-12-29 15:13:11 +05:00
parent 38f4fb54fd
commit 5ad18fcdc6
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 108 additions and 8 deletions

View file

@ -665,10 +665,19 @@ video {
width: 8rem;
}
.w-fit {
width: -moz-fit-content;
width: fit-content;
}
.max-w-\[90\%\] {
max-width: 90%;
}
.flex-grow {
flex-grow: 1;
}
.flex-col {
flex-direction: column;
}
@ -693,6 +702,10 @@ video {
justify-content: space-around;
}
.justify-evenly {
justify-content: space-evenly;
}
.gap-2 {
gap: 0.5rem;
}
@ -701,10 +714,27 @@ video {
gap: 1rem;
}
.gap-1 {
gap: 0.25rem;
}
.rounded-lg {
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));
@ -788,6 +818,11 @@ video {
line-height: 2.5rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.text-green-400 {
--tw-text-opacity: 1;
color: rgb(74 222 128 / var(--tw-text-opacity, 1));