34 lines
585 B
CSS
34 lines
585 B
CSS
.access-tokens {
|
|
border-collapse: collapse;
|
|
font-size: var(--text-small);
|
|
inline-size: 100%;
|
|
margin-block-end: 2lh;
|
|
|
|
td, th {
|
|
border-block-end: 1px solid var(--color-ink-lighter);
|
|
text-align: start;
|
|
|
|
&:first-child {
|
|
inline-size: 100%;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
padding-inline-start: var(--inline-space);
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
padding-inline-end: var(--inline-space);
|
|
}
|
|
}
|
|
|
|
th {
|
|
color: var(--color-ink-dark);
|
|
font-size: var(--text-x-small);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
td {
|
|
padding-block: 8px;
|
|
}
|
|
}
|