Skip to content

Commit db11aa6

Browse files
initial commit
0 parents  commit db11aa6

File tree

10 files changed

+1947
-0
lines changed

10 files changed

+1947
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 160,
5+
"tabWidth": 2
6+
}

index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Override Tabler default colors</title>
8+
9+
<style>
10+
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
11+
12+
* {
13+
box-sizing: border-box;
14+
}
15+
16+
body {
17+
margin: 0;
18+
padding: 0;
19+
overflow-y: hidden;
20+
}
21+
22+
textarea {
23+
width: 100%;
24+
height: 100vh;
25+
border: none;
26+
padding: 1rem;
27+
margin: 0;
28+
font-size: 1rem;
29+
line-height: 1.5;
30+
resize: none;
31+
font-family: "JetBrains Mono", serif;
32+
}
33+
34+
textarea:focus {
35+
outline: none;
36+
}
37+
</style>
38+
</head>
39+
40+
<body>
41+
<textarea spellcheck="false"></textarea>
42+
43+
<script type="module" src="/src/main.js"></script>
44+
</body>
45+
46+
</html>

0 commit comments

Comments
 (0)