Recently, I incorporated tabs from the Element UI into one of my projects. Feel free to check out the implementation at this link: https://jsfiddle.net/x3ybe784/
In this example, a div with the el-tabs__content class is generated by the library.
.el-tabs__content {
overflow: hidden;
position: relative;
}
I need to change overflow: hidden
; to overflow: visible
;
Is there a way to achieve this?