3
0

Make tabs block background transparent

This commit is contained in:
Jože Fortun
2023-11-16 11:34:40 +01:00
parent 77572e1675
commit 5c325be5f8
@@ -149,13 +149,13 @@ export default {
navClass () {
const { orientation } = this.block.options.style
const style = orientation === 'vertical' ? 'px-3' : 'px-2'
return `${style}`
return `bg-transparent ${style}`
},
navWrapperClass () {
const { orientation, position } = this.block.options.style
let border = 'border-bottom'
let style = 'rounded mh-100'
let style = 'bg-transparent rounded mh-100'
if (orientation === 'vertical') {
border = position === 'end' ? 'border-left' : 'border-right'