mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-09 18:18:14 -07:00
35 lines
625 B
CSS
35 lines
625 B
CSS
[data-block-preview] {
|
|
display: grid;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-block-preview-figure] {
|
|
display: grid;
|
|
gap: 0.75rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
[data-block-preview-legend] {
|
|
display: grid;
|
|
min-width: 0;
|
|
|
|
> h5 {
|
|
color: var(--white);
|
|
font-size: var(--font-size-sm);
|
|
font-weight: var(--font-weight-regular);
|
|
line-height: var(--line-height-sm);
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
[data-block-preview-status] {
|
|
display: grid;
|
|
aspect-ratio: 1;
|
|
margin: 0;
|
|
place-items: center;
|
|
color: var(--gray);
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--line-height-sm);
|
|
text-transform: uppercase;
|
|
}
|