60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
|
|
/* ── Access tokens ───────────────────────────────────────────────────────── */
|
||
|
|
|
||
|
|
.token-create-form {
|
||
|
|
display: flex;
|
||
|
|
align-items: end;
|
||
|
|
gap: 0.65rem;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-create-form label {
|
||
|
|
display: grid;
|
||
|
|
gap: 0.35rem;
|
||
|
|
color: var(--muted-foreground);
|
||
|
|
font-size: 0.82rem;
|
||
|
|
flex: 1;
|
||
|
|
min-width: 14rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal {
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
padding: 0.9rem 1rem;
|
||
|
|
border: 1px solid rgba(134, 239, 172, 0.3);
|
||
|
|
border-radius: var(--radius);
|
||
|
|
background: rgba(134, 239, 172, 0.08);
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal-title {
|
||
|
|
margin: 0 0 0.6rem;
|
||
|
|
font-size: 0.85rem;
|
||
|
|
font-weight: 650;
|
||
|
|
color: #86efac;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal-row {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal-value {
|
||
|
|
flex: 1;
|
||
|
|
min-width: 0;
|
||
|
|
padding: 0.5rem 0.65rem;
|
||
|
|
border: 1px solid var(--border);
|
||
|
|
border-radius: calc(var(--radius) - 0.125rem);
|
||
|
|
background: var(--background);
|
||
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||
|
|
font-size: 0.82rem;
|
||
|
|
word-break: break-all;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal .muted-copy {
|
||
|
|
margin: 0.6rem 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.token-reveal .muted-copy code {
|
||
|
|
word-break: break-all;
|
||
|
|
}
|