mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-19 09:49:11 -05:00
48 lines
745 B
CSS
48 lines
745 B
CSS
.joinContent {
|
|
display: flex;
|
|
gap: var(--s-4);
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.joinInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-self: flex-start;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.infoHeader {
|
|
text-transform: uppercase;
|
|
color: var(--color-text-high);
|
|
font-size: var(--font-2xs);
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.infoValue {
|
|
font-size: var(--font-lg);
|
|
font-weight: var(--weight-semi);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.qrCodeContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.qrCode {
|
|
background-color: white;
|
|
padding: var(--s-2);
|
|
border-radius: var(--radius-field);
|
|
}
|
|
|
|
.joinLink {
|
|
font-size: var(--font-2xs);
|
|
text-overflow: ellipsis;
|
|
overflow-x: hidden;
|
|
text-wrap: nowrap;
|
|
max-width: 140px;
|
|
}
|