Skip to content

Commit

Permalink
fix: border bottom not displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
hudy9x committed May 10, 2023
1 parent 2fc58ab commit 4908d7d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "kompad",
"version": "0.30.0"
"version": "0.30.1"
},
"tauri": {
"allowlist": {
Expand Down
8 changes: 4 additions & 4 deletions src/containers/Pad.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Outlet } from "react-router-dom";
import Titlebar from "../components/Titlebar";
import { Outlet } from "react-router-dom"
import Titlebar from "../components/Titlebar"

function Pad() {
return (
<>
<Titlebar />
<Outlet />
</>
);
)
}

export default Pad;
export default Pad
2 changes: 2 additions & 0 deletions src/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ body {
#theme-setting {
color: var(--common-text-color);
border: 1px solid var(--common-border-light-color);
height: calc(100vh - 0px);
overflow: hidden;
}

.bg {
Expand Down

0 comments on commit 4908d7d

Please sign in to comment.