You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the second video @ 8:24 where Brad is adding css to the main.scss, my index.html isn't updating the formatting changes. I've closed VS code and issued the run npm sass statement multiple times already, along with stopping and starting Live server, all to no avail. Any suggestions on what I can do?
The text was updated successfully, but these errors were encountered:
kinda facing the same problem. After making the menu btn to rotate nothing is updating after that. i've
run npm sass a couple of times even after that nothing is updating in the localhost. Any suggestions .
@BRob05 An easier way to compile SCSS to CSS is to use VS code extension called "Live Sass compiler".
The extension compiles scss to css and then you can link your html to the css file that's creasted.
Be sure to click on "watch my sass" at the bottom on the vs code window to start compiling
I saw this was still open, and wanted to help a bit. Did you add the code to your index.html <head> tags? The way he shows it is: <link rel="stylesheet" href="css/main.css"></link>
This links to the folder dist>css and that's where the SASS file puts the actual CSS file. Make sure you link the CSS file in your index.html and not the SASS file.
I've had some issues of the CSS not updating properly but if I open the HTML file and save that to update the live server, that's helped make sure things get updated on the page.
In the second video @ 8:24 where Brad is adding css to the main.scss, my index.html isn't updating the formatting changes. I've closed VS code and issued the run npm sass statement multiple times already, along with stopping and starting Live server, all to no avail. Any suggestions on what I can do?
The text was updated successfully, but these errors were encountered: