I have a custom button above a navbar, my problem is, that the text of other buttons don't get hidden if they are behind my custom button. How can I achieve this?
Thanks a lot for your help.
Hello! For button which should be above another one add the following CSS: pre[name=button]{
z-index:10;
}/prewhere button - name of Button component
That works fine, thank you Maryna.