I've been struggling to adjust the font-weight and border-radius of a nb-user tag without any luck. I attempted to add a class and make changes in the .scss file, but nothing seemed to work
This is the HTML
<div class="teachers-box" *ngFor="let user of usuarios">
<nb-user
size="medium"
name="{{ user.name }}"
color="#d8d8d8"
onlyPicture
class="teacher-box"
>
</nb-user>
</div>
This are the .scss classes
.teachers-box {
margin-left: -13px;
}
.teacher-box {
font-weight: bold;
border: solid 2px #ffffff;
}
The teacher-box, which is inside the nb-user tag, is not responding to the styling. This is not working https://i.sstatic.net/QWe3v.png
This is working, but I had to input it directly in the browser. I need to apply it to a tag that is not visible in the text editor