summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-29 10:47:05 -0600
committerAdam <[email protected]>2025-12-29 10:47:05 -0600
commit11ab8de59fffc05737a919d7bc7ec5f540a45cfd (patch)
treeaed4494f71f56e7d4591fdc093e07894ca81b4ee /packages/ui/src
parent5f074edc3a2ca80db4fd51360304bc070279a218 (diff)
downloadopencode-11ab8de59fffc05737a919d7bc7ec5f540a45cfd.tar.gz
opencode-11ab8de59fffc05737a919d7bc7ec5f540a45cfd.zip
fix(desktop): markdown lists
Diffstat (limited to 'packages/ui/src')
-rw-r--r--packages/ui/src/components/markdown.css10
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 {