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": {
"scripts": {
"dev": ["air"],
"build:docker": ["make local-image"],
"build:motr": ["make nebula", "make motr"],
"build:sonrd": ["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"]
"dev": [
"air"
],
"build:docker": [
"make local-image"
],
"build:motr": [
"make nebula",
"make motr"
],
"build:nebula": [
"make nebula"
],
"build:sonrd": [
"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
module.exports = {
content: [
"./blocks/**/*.{templ,html}",
"./components/**/*.{templ,html}",
"./pages/**/*.{templ,html}",
"./src/**/*.ts",
],