Closed zuramai closed 2 years ago
As you can see in above image, the corner curves is positioned above the contents. It is because the z-10 in the content wrapper does not give an effect due to the unpositioned element. So I added relative class and it solved.
z-10
relative
<CornerCurves class="absolute transform bottom-0 right-0 flip-x" /> <div class="my-auto z-10 relative"> <slot /> </div>
:tada: This PR is included in version 1.4.1 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
As you can see in above image, the corner curves is positioned above the contents. It is because the
z-10
in the content wrapper does not give an effect due to the unpositioned element. So I addedrelative
class and it solved.