mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 08:39:40 +02:00
- 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>
23 lines
440 B
CSS
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;
|
|
}
|