mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-21 21:32:13 +01:00
An open-source, cross-platform terminal for seamless workflows
4df8e16a53
The column headers for the directory preview were a solid color, which was conflicting with the translucent colors for the rest of the UI. I've changed this to be more consistent. I've also updated a border color that was conflicting with the rest of the UI. The code blocks in the markdown preview were also solid colored and the actions were causing the whole window UI to lose its transparency when they were hovered over. This was due to it applying a backdrop-filter, which breaks the window transparency. I've removed this blur and an invalid color variable. This also fixes the bottom margins for both blocks so there's more space when scrolled all the way to the bottom of the block. Before, the overlay scrollbars were obscuring the content. |
||
---|---|---|
.github | ||
.storybook | ||
.vscode | ||
build | ||
cmd | ||
db | ||
emain | ||
frontend | ||
pkg | ||
public | ||
.editorconfig | ||
.gitignore | ||
.prettierignore | ||
.yarnrc.yml | ||
electron-builder.config.cjs | ||
electron.vite.config.ts | ||
eslint.config.js | ||
go.mod | ||
go.sum | ||
index.html | ||
LICENSE | ||
package.json | ||
prettier.config.cjs | ||
README.md | ||
Taskfile.yml | ||
tsconfig.json | ||
version.cjs | ||
vitest.config.ts | ||
yarn.lock |
The Next Wave
Prereqs:
You'll need to install "task" (which we're using as a build/run system):
brew install go-task
On first checkout:
yarn
go mod tidy
Then, run the following command to start the app using the Vite dev server (this will enable Hot Module Reloading):
task electron:dev
To run the app without the dev server, run the following instead:
task electron:start