First release

This commit is contained in:
Roni Laukkarinen
2026-02-01 16:17:41 +02:00
commit f3a297dd9a
10 changed files with 3329 additions and 0 deletions
+1203
View File
File diff suppressed because it is too large Load Diff
+49
View File
@@ -0,0 +1,49 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
background-color: #0a0a0a;
color: #ffffff;
min-height: 100vh;
overflow-x: hidden;
}
.mono {
font-family: "JetBrains Mono", monospace;
}
#root {
min-height: 100vh;
}
textarea:focus,
button:focus {
outline: none;
}
button {
background-color: transparent;
}
button:focus,
button:focus-visible,
button:active {
outline: none;
background-color: transparent;
}
.icon-btn:hover {
color: #ccc !important;
}
.wpm-control:hover .wpm-value {
color: #fff !important;
}
.wpm-btn:hover {
color: #ccc !important;
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.jsx";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);