diff --git a/docs/docs/releasenotes.mdx b/docs/docs/releasenotes.mdx index 250f7a58b..97e1bee44 100644 --- a/docs/docs/releasenotes.mdx +++ b/docs/docs/releasenotes.mdx @@ -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 - Allow connections to entirely be defined in connections.json without relying on ~/.ssh/config - Added an option to reveal files in external file viewer for local connection @@ -53,6 +53,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw - [bugfix] Connections launch without wsh if the unix domain socket can't be opened - [bugfix] Connection status list lights up correctly with currently connected connections - [bugfix] Use en_US.UTF-8 if the requested LANG is not available in your terminal +- Other bug fixes, performance improvements, and dependency updates ### v0.10.4 — Dec 20, 2024 diff --git a/frontend/app/element/markdown.scss b/frontend/app/element/markdown.scss index ae08ba78a..b49cdccfd 100644 --- a/frontend/app/element/markdown.scss +++ b/frontend/app/element/markdown.scss @@ -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; diff --git a/frontend/app/view/preview/preview.scss b/frontend/app/view/preview/preview.scss index 934a3315b..d6e8bec12 100644 --- a/frontend/app/view/preview/preview.scss +++ b/frontend/app/view/preview/preview.scss @@ -13,6 +13,10 @@ align-items: start; justify-content: start; overflow: auto; + + .markdown .content { + padding: 5px 15px 10px 15px; + } } &.view-preview-text {