We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b933a commit aefe41fCopy full SHA for aefe41f
src/App.tsx
@@ -4,7 +4,8 @@ import Browser from "./components/Browser";
4
import Notification from "./components/Notification";
5
import "./App.css";
6
import { invoke } from "@tauri-apps/api/core";
7
-import Sidebar from "./components/Sidebar";
+import Sidebar from "./components/sidebar";
8
+
9
10
function App() {
11
let [event, setEvent] = createSignal<AppEvent>({ message: "Initializing App", type: "info" });
src/components/sidebar/Input.module.scss
@@ -10,4 +10,9 @@
background-color: rgba(0, 0, 0, 0.1);
font-size: 16px;
12
outline: none;
13
+ color: #666;
14
15
+ &:focus {
16
+ color: #000;
17
+ }
18
}
0 commit comments