|
1 | | -// Lucky generates 3 folders to help you organize your CSS: |
2 | | -// |
3 | | -// - src/css/variables # Files for colors, spacing, etc. |
4 | | -// - src/css/mixins # Put your mixin functions in files here |
5 | | -// - src/css/components # CSS for your components |
6 | | -// |
7 | | -// Remember to import your new CSS files or they won't be loaded: |
8 | | -// |
9 | | -// @import "./variables/colors" # Imports the file in src/css/variables/_colors.scss |
10 | | -// |
11 | | -// Note: Vite automatically resolves imports from node_modules |
12 | | -// https://stackoverflow.com/questions/39535760/what-does-a-tilde-in-a-css-url-do |
| 1 | +/* Lucky generates 3 folders to help you organize your CSS: |
| 2 | +* |
| 3 | +* - src/css/variables # Files for colors, spacing, etc. |
| 4 | +* - src/css/mixins # Put your mixin functions in files here |
| 5 | +* - src/css/components # CSS for your components |
| 6 | +* |
| 7 | +* Remember to import your new CSS files or they won't be loaded: |
| 8 | +* |
| 9 | +* @import "./variables/colors"; |
| 10 | +* |
| 11 | +* Note: Vite automatically resolves imports from node_modules |
| 12 | +* https://stackoverflow.com/questions/39535760/what-does-a-tilde-in-a-css-url-do |
| 13 | +*/ |
13 | 14 |
|
14 | 15 | @import 'modern-normalize/modern-normalize.css'; |
15 | | -// Add your own components and import them like this: |
16 | | -// |
17 | | -// @import "components/my_new_component"; |
| 16 | +/* Add your own components and import them like this: |
| 17 | +* |
| 18 | +* @import "components/my_new_component"; |
| 19 | +*/ |
18 | 20 |
|
19 | | -// Default Lucky styles. |
20 | | -// Delete these when you're ready to bring in your own CSS. |
| 21 | +/* Default Lucky styles. |
| 22 | +* Delete these when you're ready to bring in your own CSS. |
| 23 | +*/ |
21 | 24 | body { |
22 | 25 | font-family: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, |
23 | 26 | Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, |
|
0 commit comments