← Prompts
Reference Awesome Claude Code
File Organizer 2000 - Developer Guide
# File Organizer 2000 - Developer Guide ## Styling Guidelines To avoid styling conflicts between Obsidian's styles and our plugin, follow these guidelines: ### 1. Tailwind Configuration - Tailwind
# File Organizer 2000 - Developer Guide
## Styling Guidelines
To avoid styling conflicts between Obsidian's styles and our plugin, follow these guidelines:
### 1. Tailwind Configuration
- Tailwind is configured with custom Obsidian CSS variables
- Preflight is disabled to avoid conflicts with Obsidian's global styles
- Component isolation is achieved through `StyledContainer` wrapper
- **No prefix needed** - we removed the `fo-` prefix to allow JIT compilation to work properly
### 2. Component Style Isolation
For all new components:
1. Import the `StyledContainer` component from components/ui/utils.tsx:
```tsx
import { StyledContainer } from "../../components/ui/utils";
```
2. Wrap your component's root element with StyledContainer:
```tsx
return (Sign in to view the full prompt.
Sign InClassification
Reference Documentation, cheatsheets, setup guides
Scope Project
This codebase Manual Manually placed / Persistent