Probe der Anpassungen von Tailwind-Css in der index.css

This commit is contained in:
Marco Kittel 2025-06-10 21:47:08 +02:00
parent 39d001eed7
commit 6d63f532a8
2 changed files with 8 additions and 0 deletions

View File

@ -55,6 +55,9 @@ function App() {
</select> </select>
<Dynamic component={options[selected()]} /> <Dynamic component={options[selected()]} />
<FooComponent text="props test"/> <FooComponent text="props test"/>
<div class="shadow-lg bg-twitter-blue text-center">
red background
</div>
</> </>
); );
} }

View File

@ -13,3 +13,8 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace; monospace;
} }
@theme {
--color-twitter-blue: #1DA1F2
}