Skip to content

Commit aefe41f

Browse files
fix building app
Signed-off-by: Nikita Skrynnik <[email protected]>
1 parent 99b933a commit aefe41f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import Browser from "./components/Browser";
44
import Notification from "./components/Notification";
55
import "./App.css";
66
import { invoke } from "@tauri-apps/api/core";
7-
import Sidebar from "./components/Sidebar";
7+
import Sidebar from "./components/sidebar";
8+
89

910
function App() {
1011
let [event, setEvent] = createSignal<AppEvent>({ message: "Initializing App", type: "info" });

src/components/sidebar/Input.module.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@
1010
background-color: rgba(0, 0, 0, 0.1);
1111
font-size: 16px;
1212
outline: none;
13+
color: #666;
14+
15+
&:focus {
16+
color: #000;
17+
}
1318
}

0 commit comments

Comments
 (0)