Skip to content

Commit 7b366c9

Browse files
authored
fix markdown padding (#1848)
1 parent c1dd0c9 commit 7b366c9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/docs/releasenotes.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw
3333
- Custom widgets can now be launched in magnified mode
3434
- Various workspace UX improvements around closing/deleting
3535
- file:/// urls now work in web widget
36-
- Increased size of files allowed in `wsh ai`
36+
- Increased max size of files allowed in `wsh ai` to 50k
3737
- Increased maximum allowed term:scrollback to 50k lines
3838
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
3939
- [build] Windows builds now use zig, simplifying Windows dev setup
@@ -47,6 +47,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw
4747
- [bugfix] Fix preview for large text files
4848
- [bugfix] Fix URLs in terminal (now clickable again)
4949
- [bugfix] Windows URLs now work properly for Wave background images
50+
- Other bug fixes, performance improvements, and dependency updates
5051

5152
### v0.10.4 — Dec 20, 2024
5253

frontend/app/element/markdown.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
font-family: var(--markdown-font-family);
2020
font-size: var(--markdown-font-size);
2121
overflow-wrap: break-word;
22-
padding: 5px 15px 10px 15px;
2322

2423
&.non-scrollable {
2524
overflow: hidden;

frontend/app/view/preview/preview.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
align-items: start;
1414
justify-content: start;
1515
overflow: auto;
16+
17+
.markdown .content {
18+
padding: 5px 15px 10px 15px;
19+
}
1620
}
1721

1822
&.view-preview-text {

0 commit comments

Comments
 (0)