mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
27 lines
409 B
CSS
27 lines
409 B
CSS
@import './imported-at-import.css';
|
|
@import 'spacefolder/space.css';
|
|
|
|
.imported {
|
|
color: green;
|
|
}
|
|
|
|
pre {
|
|
background-color: #eee;
|
|
width: 500px;
|
|
padding: 1em 1.5em;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* test postcss nesting */
|
|
.postcss {
|
|
.nesting {
|
|
color: pink;
|
|
}
|
|
}
|
|
|
|
/* test url comma separation */
|
|
.url-separated {
|
|
/* prettier-ignore */
|
|
background-image:url(images/cat.webp),url(images/dog.webp);
|
|
}
|