Currently, I am diving into the world of ionic. Within my app, I have a linkbutton where I am attempting to set the font size to 12px. However, it seems that this style is being overridden by other CSS properties. The SCSS file associated with the linkbutton contains the following code:
.link_button {
color: $myColor;
font-size: 12px;
text-decoration: underline;
bottom:10px;
}
I am wondering how I can ensure that the above SCSS styles take precedence over others?
Here is how the text currently appears:
https://i.sstatic.net/qGhMi.png
The actual CSS applied (as shown in Chrome tools) looks like this:
https://i.sstatic.net/maCeF.png
Despite suggestions received here, modifying my SCSS file using both ID and !important did not achieve the desired result. Even when applying !important (or through an ID), the issue persists: https://i.sstatic.net/ngnc4.png