refactor(styles): move the imports to the top

- Esbuild needs css imports to be on the top of the file for
  them to resolve properly

Signed-off-by: Akshit Garg <garg.akshit@gmail.com>
This commit is contained in:
Akshit Garg 2021-08-21 18:10:24 +05:30
parent 8c99eb04a4
commit a3734cc6ab
No known key found for this signature in database
GPG Key ID: 31EE28F4B925E878

View File

@ -2,6 +2,7 @@
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import "./highlight.css";
@font-face {
font-family: "JetBrains Mono";
@ -62,5 +63,3 @@ textarea {
color: black;
font-weight: bold;
}
@import "./highlight.css";