1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-30 16:18:31 +00:00
FrankerFaceZ/styles/widgets/tab-container.scss

40 lines
635 B
SCSS
Raw Normal View History

2017-11-13 01:23:39 -05:00
.ffz--tab-container {
@extend .ffz--outer-container;
header:focus {
outline: none;
.tab.active {
box-shadow: inset 0 0 0 1px #7d5bbe,
0 0 6px -2px #7d5bbe;
}
}
.tab {
cursor: pointer;
position: relative;
border-top: 1px solid;
border-right: 1px solid;
&:first-child { border-left-width: 1px; border-left-style: solid }
border-color: $border-light;
.tw-theme--dark & {
2017-11-13 01:23:39 -05:00
border-color: $border-dark;
}
&.active:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
content: '';
border-bottom: 4px solid #6441a4;
}
}
& > section {
@extend .ffz--inner-container;
}
}