fix markdown padding (#1848)

This commit is contained in:
Mike Sawka 2025-01-24 15:56:49 -08:00 committed by GitHub
parent c1dd0c99d9
commit 7b366c93b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw
- Custom widgets can now be launched in magnified mode
- Various workspace UX improvements around closing/deleting
- file:/// urls now work in web widget
- Increased size of files allowed in `wsh ai`
- Increased max size of files allowed in `wsh ai` to 50k
- Increased maximum allowed term:scrollback to 50k lines
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
- [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
- [bugfix] Fix preview for large text files
- [bugfix] Fix URLs in terminal (now clickable again)
- [bugfix] Windows URLs now work properly for Wave background images
- Other bug fixes, performance improvements, and dependency updates
### v0.10.4 — Dec 20, 2024

View File

@ -19,7 +19,6 @@
font-family: var(--markdown-font-family);
font-size: var(--markdown-font-size);
overflow-wrap: break-word;
padding: 5px 15px 10px 15px;
&.non-scrollable {
overflow: hidden;

View File

@ -13,6 +13,10 @@
align-items: start;
justify-content: start;
overflow: auto;
.markdown .content {
padding: 5px 15px 10px 15px;
}
}
&.view-preview-text {