Hi @zerotoone.de,
The CSS is not taking effect and this is the current CSS (I removed the upper part to make it smaller)
.shadow2 {
box-shadow: 0px 24px 43px 0px rgba(173, 179, 192, 0.15);
}
}
.x-anchor-sub-indicator {
position: absolute;
right: 0;
width: 54px;
height: 54px;
margin: 0 !important;
line-height: 54px !important;
vertical-align: middle;
}
.x-anchor-sub-indicator::before {
margin-top: 18px;
}
The CSS isn’t working because of extra curly bracket, please remove it and it should look like this
.shadow2 {
box-shadow: 0px 24px 43px 0px rgba(173, 179, 192, 0.15);
}
.x-anchor-sub-indicator {
position: absolute;
right: 0;
width: 54px;
height: 54px;
margin: 0 !important;
line-height: 54px !important;
vertical-align: middle;
}
.x-anchor-sub-indicator:before {
margin-top: 18px;
}
Any malformed CSS could affect the newly added CSS.
Thanks!