Calendar/wwwroot/css/src/test-nesting.css
Janus C. H. Knudsen 80aaab46f2 WIP on master
2025-11-03 14:54:57 +01:00

26 lines
No EOL
340 B
CSS

/* Test file for CSS nesting */
.test-container {
display: flex;
padding: 20px;
.test-child {
color: blue;
&:hover {
color: red;
}
&.active {
font-weight: bold;
}
}
.test-nested {
margin: 10px;
.deep-nested {
font-size: 14px;
}
}
}