WIP on master
This commit is contained in:
parent
b6ab1ff50e
commit
80aaab46f2
25 changed files with 6291 additions and 927 deletions
26
wwwroot/css/src/test-nesting.css
Normal file
26
wwwroot/css/src/test-nesting.css
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/* 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue