mirror of
https://github.com/onyx-dot-app/documentation.git
synced 2026-07-25 05:35:37 -04:00
56224a0df5
* fix: document LM Studio loopback binding issue * nit * nit * nit
28 lines
585 B
CSS
28 lines
585 B
CSS
.rounded-image {
|
|
border-radius: 1rem;
|
|
margin: 8px auto;
|
|
display: block;
|
|
}
|
|
|
|
.prose table,
|
|
table {
|
|
display: table;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
table-layout: auto;
|
|
}
|
|
|
|
/* Table header cells */
|
|
.prose table th {
|
|
text-align: left !important; /* horizontal left */
|
|
}
|
|
|
|
/* Apply to Cards with file-path SVG icons to fix dark-mode background
|
|
box and invert the icon to white */
|
|
.icon-dark-invert [data-component-part="card-icon"] img {
|
|
background: transparent !important;
|
|
}
|
|
.dark .icon-dark-invert [data-component-part="card-icon"] img {
|
|
filter: invert(1) !important;
|
|
}
|