managarten/games/figgos/global.css
Till-JS 949b9c85bc 🎮 feat(games): add figgos game to monorepo
- Rename barbiebox to figgos and integrate into monorepo
- Remove separate git repository
- Update package name to @figgos/game
- Add dev scripts (figgos:dev, dev:figgos:ios, dev:figgos:android)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-04 16:26:25 +01:00

23 lines
440 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
/* Remove focus outlines globally */
* {
outline: none !important;
}
input, textarea, button, select, a {
-webkit-tap-highlight-color: transparent;
}
/* Specific React Native Web fixes */
input, textarea {
outline-width: 0;
outline-color: transparent;
outline-style: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}