Skip to content

Commit

Permalink
test: update styles path for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Valik3201 committed Feb 10, 2024
1 parent c6cd3da commit a874445
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1,623 deletions.
2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tsx": false,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/output.css",
"css": "src/index.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
Expand Down
44 changes: 33 additions & 11 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,37 @@
@import-normalize; /* bring in normalize.css styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
margin: 0;
font-family: 'Geist Variable', -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;
@layer base {
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 0 0% 98%;
--primary-foreground: 240 5.9% 10%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--radius: 0.5rem;
}
}

code {
font-family: 'Geist Mono Variable', source-code-pro, Menlo, Monaco, Consolas,
'Courier New', monospace;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { BrowserRouter } from 'react-router-dom';
import ReactDOM from 'react-dom/client';
import { App } from 'components/App';
import './index.css';
import './output.css';

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
Expand Down
37 changes: 0 additions & 37 deletions src/input.css

This file was deleted.

Loading

0 comments on commit a874445

Please sign in to comment.