2025-06-07 15:22:36 -06:00
|
|
|
@use "container";
|
|
|
|
|
2017-11-13 01:23:39 -05:00
|
|
|
.ffz--tab-container {
|
|
|
|
@extend .ffz--outer-container;
|
|
|
|
|
|
|
|
header:focus {
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
.tab.active {
|
2019-09-27 15:44:33 -04:00
|
|
|
box-shadow: inset 0 0 0 1px var(--color-border-tab-active),
|
|
|
|
0 0 6px -2px var(--color-border-tab-active);
|
2017-11-13 01:23:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
border-top: 1px solid;
|
|
|
|
border-right: 1px solid;
|
|
|
|
&:first-child { border-left-width: 1px; border-left-style: solid }
|
|
|
|
|
2019-09-27 15:44:33 -04:00
|
|
|
border-color: var(--color-border-base);
|
2017-11-13 01:23:39 -05:00
|
|
|
|
|
|
|
&.active:after {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
content: '';
|
2019-09-27 15:44:33 -04:00
|
|
|
border-bottom: 4px solid var(--color-border-tab-active);
|
2017-11-13 01:23:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > section {
|
|
|
|
@extend .ffz--inner-container;
|
|
|
|
}
|
2025-06-07 15:22:36 -06:00
|
|
|
}
|