https://www.cssportal.com/css-to-scss/
CSS Input :
#test {
color: red;
}
#test a {
color: blue;
}
############
SCSS Output:
$color_1: red;
$color_2: blue;
#test {
color: $color_1;
a {
color: $color_2;
}
}
Klappt bei mir, nesting und eigenständig sogar variablen angelegt.
Ansonsten Chat GPT fragen aber der kommt bei viel Text Schnell durcheinander.