diff --git a/packages/desktop/package.json b/packages/desktop/package.json index fb32ec9..9aa0d37 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -108,7 +108,6 @@ }, "dependencies": { "@getstation/electron-google-oauth2": "^2.1.0", - "@mui/icons-material": "^5.6.2", "@nirvana/core": "*", "antd": "^4.20.2", "axios": "^0.26.1", diff --git a/packages/desktop/src/pages/terminal/index.tsx b/packages/desktop/src/pages/terminal/index.tsx index 1e16378..dde22ba 100644 --- a/packages/desktop/src/pages/terminal/index.tsx +++ b/packages/desktop/src/pages/terminal/index.tsx @@ -60,6 +60,17 @@ export default function NirvanaTerminal({

3/5

+ + +
setIsModalVisible(true)} + className="ml-auto shadow-xl" + > + + + +
+
{/* list of all lines */} @@ -76,7 +87,7 @@ export default function NirvanaTerminal({ {/* rest of the lines */} -
+
{restLines.map((line) => ( ))} - - -
setIsModalVisible(true)} - className="ml-auto absolute bottom-5 right-5 shadow-xl" - > - - - -
-
); diff --git a/packages/desktop/src/styles/index.css b/packages/desktop/src/styles/index.css index eec7f50..ef1ec41 100644 --- a/packages/desktop/src/styles/index.css +++ b/packages/desktop/src/styles/index.css @@ -1,3 +1,5 @@ +@import "~antd/dist/antd.css"; + #root { padding: 0 !important; font-family: "IBM Plex Sans", sans-serif; @@ -7,11 +9,9 @@ @tailwind components; @tailwind utilities; -@import "~antd/dist/antd.css"; - -button { +/* button { @apply transition-all; -} +} */ #titlebar { -webkit-user-select: none; @@ -28,14 +28,6 @@ button { border: none; } -/* body { - background-color: #00000000; -} - -html { - background-color: #00000000; -} */ - .ant-modal-footer { padding: 0 !important; }