@cagatay you’d need to either use float: right;
or position: absolute;
and then make use of left, right
variables. If you use absolute
then you’d also need to set a top value (which I think is already there).
This will take experimentation - the CSS I added also only triggers at screen estates of a minimum of 1200px
to prevent it looking strange on mobile breakpoints.
EDIT: Actually, this will work
.posts [component=post][data-index="-1"].isSolved:before {
border: none !important;
border-radius: 6px;
float: right;
left: 10px;
}
Look for the block .posts [component=post][data-index="-1"].isSolved:before
and add the float
and left
values to it, then save