style: add styles for chrome/safari/opera scrollbars

This commit is contained in:
Prad Nukala 2024-09-30 21:29:21 -04:00
parent bfa78063a7
commit 37585b4df2
3 changed files with 1642 additions and 16 deletions

View File

@ -28,21 +28,65 @@
}, },
"shell": { "shell": {
"scripts": { "scripts": {
"dev": ["air"], "dev": [
"build:docker": ["make local-image"], "air"
"build:motr": ["make nebula", "make motr"], ],
"build:sonrd": ["make dwn", "make build"], "build:docker": [
"build": ["make dwn", "make build", "make motr"], "make local-image"
"gen:proto": ["make proto-gen"], ],
"gen:pkl": ["make pkl"], "build:motr": [
"gen:templ": ["make templ"], "make nebula",
"start:motr": ["make templ", "make motr", "make start-motr"], "make motr"
"start:testnet": ["make templ", "make install", "make sh-testnet"], ],
"start": ["process-compose up -d"], "build:nebula": [
"stop": ["process-compose down"], "make nebula"
"test:e2e": ["make templ", "make test-e2e"], ],
"test:unit": ["make templ", "make test-unit"], "build:sonrd": [
"test": ["make templ", "make test"] "make dwn",
"make build"
],
"build": [
"make dwn",
"make build",
"make motr"
],
"gen:proto": [
"make proto-gen"
],
"gen:pkl": [
"make pkl"
],
"gen:templ": [
"make templ"
],
"start:motr": [
"make templ",
"make motr",
"make start-motr"
],
"start:testnet": [
"make templ",
"make install",
"make sh-testnet"
],
"start": [
"process-compose up -d"
],
"stop": [
"process-compose down"
],
"test:e2e": [
"make templ",
"make test-e2e"
],
"test:unit": [
"make templ",
"make test-unit"
],
"test": [
"make templ",
"make test"
]
} }
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
// tailwind.config.js // tailwind.config.js
module.exports = { module.exports = {
content: [ content: [
"./blocks/**/*.{templ,html}", "./components/**/*.{templ,html}",
"./pages/**/*.{templ,html}", "./pages/**/*.{templ,html}",
"./src/**/*.ts", "./src/**/*.ts",
], ],