diff options
| author | Adam <[email protected]> | 2025-12-29 10:47:05 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-29 10:47:05 -0600 |
| commit | 11ab8de59fffc05737a919d7bc7ec5f540a45cfd (patch) | |
| tree | aed4494f71f56e7d4591fdc093e07894ca81b4ee /packages | |
| parent | 5f074edc3a2ca80db4fd51360304bc070279a218 (diff) | |
| download | opencode-11ab8de59fffc05737a919d7bc7ec5f540a45cfd.tar.gz opencode-11ab8de59fffc05737a919d7bc7ec5f540a45cfd.zip | |
fix(desktop): markdown lists
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/src/components/markdown.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/ui/src/components/markdown.css b/packages/ui/src/components/markdown.css index dd0fd21a3..1cbcf6f97 100644 --- a/packages/ui/src/components/markdown.css +++ b/packages/ui/src/components/markdown.css @@ -64,8 +64,16 @@ list-style-position: inside; } + ul { + list-style-type: disc; + } + + ol { + list-style-type: decimal; + } + li { - margin-bottom: 1.5rem; + margin-bottom: 0.5rem; } li::marker { |
