
* docusaurus-theme: Fix header alignment, overscroll, vertical padding. * docusaurus-theme: Lint. * website/docs: Prepare for monorepo packages. * website/docs: Clean up dependencies. Tidy table. * website/docs: Fix issue where Prettier affects example content. * website/docs: Temp fix for stale packages.
21 lines
357 B
CSS
21 lines
357 B
CSS
.table td {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
|
|
&:first-child {
|
|
text-align: right;
|
|
width: 13ch;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
width: 10ch;
|
|
}
|
|
|
|
&[data-supported="true"] {
|
|
color: var(--ifm-color-success-dark);
|
|
}
|
|
&[data-supported="false"] {
|
|
color: var(--ifm-color-danger-dark);
|
|
}
|
|
}
|