mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-15 07:36:27 -05:00
28 lines
414 B
CSS
28 lines
414 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-4);
|
|
padding-block: var(--s-10);
|
|
}
|
|
|
|
.iconContainer {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.icon {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
opacity: 0.35;
|
|
filter: saturate(0.6);
|
|
}
|
|
|
|
.text {
|
|
max-width: 24rem;
|
|
color: var(--color-text-high);
|
|
font-size: var(--font-lg);
|
|
font-weight: var(--weight-semi);
|
|
text-align: center;
|
|
text-wrap: balance;
|
|
}
|