Calendar/wwwroot/css/src/test-nesting.css

26 lines
340 B
CSS
Raw Normal View History

2025-11-03 14:54:57 +01:00
/* 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;
}
}
}