Stylesheet links path is almost correct.
On #100 it is reported that: "the path on hover is almost correct, the only problem is that it starts with "localhost:4200/", everything after that is the correct path, so it seems like it wouldn't be tough to get the path itself"
Some comments from @jalissia : This should be possible. The fact that is isn't working suggests that you need to update the pathMapping property (either in the launch.json, or the VS Code settings for the Elements extension - depending on how you are attaching).
If the path in the tooltip after "localhost:4200/" is the full path to the file, it probably means you need something like this:
"pathMapping": { "/": "" } Which means it will replace everything before the first slash (localhost:4200 in your case) with an empty string. So something like localhost:4200/c/path/to/my/file.sass will become c/path/to/my/file.sass which VS Code should be able to open.
If the path after localhost:4200 is more of a relative path to the file you can use something like:
"pathMapping": { "/": "${workspaceFolder}" } so that it will prepend your workspace path before the relative part of the sass file path in the tooltip.
Unfortunately we don't have any good logging yet to help you figure out path mapping issues like these, but it is definitely something I want to add.