Is there a way to dynamically change the CSS? The problem I'm facing is that the CSS is generated by the framework itself, making it impossible for me to declare or modify it.
Here's the scenario at runtime:
https://i.sstatic.net/IovGr.png
I am looking to target the swiper-pagination-bullets
class and adjust the bottom value based on certain conditions. For example:
Note: This is just a rough draft:
If data != null {
.swiper-pagination-bullets {
bottom: 190px !important;
}
} else {
.swiper-pagination-bullets {
bottom: 150px !important;
}
}