Initial commit: Dockerized, Postgres, CI/CD pipeline
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 3m36s
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 3m36s
This commit is contained in:
31
src/index.css
Normal file
31
src/index.css
Normal file
@@ -0,0 +1,31 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme {
|
||||
--color-brand-primary: #9ECAE1;
|
||||
--color-dark-bg: #0a0a0a;
|
||||
--color-dark-card: #141414;
|
||||
--color-dark-header: #141414;
|
||||
--color-dark-sidebar: #141414;
|
||||
--color-dark-border: #222222;
|
||||
--color-dark-input: #1a1a1a;
|
||||
--color-dark-text: #ededed;
|
||||
--color-dark-muted: #888888;
|
||||
--font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
|
||||
@layer base {
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
@apply bg-dark-bg text-dark-text;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #333333;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user