mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-02-13 01:12:01 +01:00
fix markdown padding (#1848)
This commit is contained in:
parent
c1dd0c99d9
commit
7b366c93b0
@ -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
|
- Custom widgets can now be launched in magnified mode
|
||||||
- Various workspace UX improvements around closing/deleting
|
- Various workspace UX improvements around closing/deleting
|
||||||
- file:/// urls now work in web widget
|
- 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
|
- Increased maximum allowed term:scrollback to 50k lines
|
||||||
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
|
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
|
||||||
- [build] Windows builds now use zig, simplifying Windows dev setup
|
- [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 preview for large text files
|
||||||
- [bugfix] Fix URLs in terminal (now clickable again)
|
- [bugfix] Fix URLs in terminal (now clickable again)
|
||||||
- [bugfix] Windows URLs now work properly for Wave background images
|
- [bugfix] Windows URLs now work properly for Wave background images
|
||||||
|
- Other bug fixes, performance improvements, and dependency updates
|
||||||
|
|
||||||
### v0.10.4 — Dec 20, 2024
|
### v0.10.4 — Dec 20, 2024
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
font-family: var(--markdown-font-family);
|
font-family: var(--markdown-font-family);
|
||||||
font-size: var(--markdown-font-size);
|
font-size: var(--markdown-font-size);
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
padding: 5px 15px 10px 15px;
|
|
||||||
|
|
||||||
&.non-scrollable {
|
&.non-scrollable {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -13,6 +13,10 @@
|
|||||||
align-items: start;
|
align-items: start;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
|
.markdown .content {
|
||||||
|
padding: 5px 15px 10px 15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.view-preview-text {
|
&.view-preview-text {
|
||||||
|
Loading…
Reference in New Issue
Block a user