CSS not importing

0
hi team ,  i have make a custon stylesheet and import it into main.scss file . but still css is not visible . Please help!
asked
3 answers
0

i have this icon in mendix 

image.png

its scss -

image.png

main scss = 

image.png

output screen =

image.png

 

i want to show this svg icon at the center how i can show with the help of class only not directly set the styles in the appearance options ?

answered
0

Hi Pratham,

There are many ways by which you can center this svg, apply this in upstream class

1st display:block !important; margin:0 auto;

2nd display:flex;  justify-content: center;  align-items: center;

 

answered
0

Please try removing the transform: translate(-50%,-50%);. It should be working fine.

 

answered