TAO/client/src/index.css

26 lines
579 B
CSS
Raw Normal View History

2023-09-03 12:46:07 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-09-02 04:53:15 +00:00
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2023-10-25 07:53:34 +00:00
background-color: black;
2023-09-02 04:53:15 +00:00
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
2023-09-03 12:46:07 +00:00
@layer components {
.card {
border-radius: theme('borderRadius.lg');
padding: theme('spacing.6');
}
/* ... */
}