diff options
| author | fyzanshaik <[email protected]> | 2024-08-05 23:28:52 +0530 |
|---|---|---|
| committer | fyzanshaik <[email protected]> | 2024-08-05 23:28:52 +0530 |
| commit | c1961a828236d031e26d3afbcd0fbd237191fdb7 (patch) | |
| tree | 74f290d08393626ddb0d675f7a2de606bb752baa /apps/web/tailwind.config.ts | |
| parent | Merge pull request #211 from NareshBiradar1/spelling-typo-necessary-in-introd... (diff) | |
| download | supermemory-c1961a828236d031e26d3afbcd0fbd237191fdb7.tar.xz supermemory-c1961a828236d031e26d3afbcd0fbd237191fdb7.zip | |
Scroll bar added
Diffstat (limited to 'apps/web/tailwind.config.ts')
| -rw-r--r-- | apps/web/tailwind.config.ts | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/apps/web/tailwind.config.ts b/apps/web/tailwind.config.ts index cf1434cf..2a05cd74 100644 --- a/apps/web/tailwind.config.ts +++ b/apps/web/tailwind.config.ts @@ -1 +1,20 @@ -module.exports = require("@repo/tailwind-config/tailwind.config"); +// Import the existing Tailwind config from your shared repository +const sharedConfig = require("@repo/tailwind-config/tailwind.config"); + +module.exports = { + presets: [sharedConfig], + theme: { + extend: { + colors: { + scrollbar: { + // thumb: "#d1d5db", + // thumbHover: "#1D4ED8", + thumb: "#303c4c", + thumbHover: "#2E3A48", + track: "#1F2937", + }, + }, + }, + }, + plugins: [require("tailwind-scrollbar")({ nocompatible: true })], +}; |