I recently transitioned to front end development and was introduced to SASS. I am attempting to apply the following properties to the css class - link, however, the component is not reflecting the properties. Any insights or suggestions would be greatly appreciated.
html :
<div _ngcontent-ype-26="" id="body">
<svg width="1440" height="538>
<g transform="translate(240,20)">
<path class="link" d="M 180 114.92307692307692
C 90 114.92307692307692,
90 229.84615384615384,
0 229.84615384615384">
</path>
</g>
</svg>
</div>
scss file :
.link path {
fill: none;
stroke: #ccc;
stroke-width: 1px;
}