2020-03-20 16:48:11 +00:00
|
|
|
.wc-block-components-tabs {
|
|
|
|
.wc-block-components-tabs__list {
|
2020-01-06 22:28:09 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
width: 100%;
|
2020-03-20 16:48:11 +00:00
|
|
|
> .wc-block-components-tabs__item {
|
2020-01-06 22:28:09 +00:00
|
|
|
border: none;
|
|
|
|
flex: auto;
|
|
|
|
background: transparent;
|
|
|
|
padding: $gap-small $gap;
|
|
|
|
color: $black;
|
|
|
|
outline-offset: -1px;
|
2020-03-13 14:41:04 +00:00
|
|
|
text-align: center;
|
2020-01-06 22:28:09 +00:00
|
|
|
transition: box-shadow 0.1s linear;
|
|
|
|
&.is-active {
|
|
|
|
box-shadow: inset 0 -3px $black;
|
|
|
|
font-weight: 600;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
color: $black;
|
|
|
|
outline-offset: -1px;
|
|
|
|
outline: 1px dotted $gray-60;
|
|
|
|
}
|
2020-03-20 16:48:11 +00:00
|
|
|
.wc-block-components-tabs__item-content {
|
2020-01-06 22:28:09 +00:00
|
|
|
width: fit-content;
|
2020-03-13 14:41:04 +00:00
|
|
|
display: inline-block;
|
2020-01-06 22:28:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 16:48:11 +00:00
|
|
|
.wc-block-components-tabs__content {
|
2020-04-24 12:23:25 +00:00
|
|
|
padding: $gap 0;
|
2020-01-06 22:28:09 +00:00
|
|
|
}
|
|
|
|
}
|