31 lines
512 B
Plaintext
31 lines
512 B
Plaintext
/* === Tabs === */
|
|
.tabs {
|
|
.tab {
|
|
display: none;
|
|
}
|
|
.tab.active {
|
|
display: block;
|
|
}
|
|
}
|
|
.tabs-animated-wrap {
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
>.tabs {
|
|
.flexbox();
|
|
height: 100%;
|
|
.transition(300ms);
|
|
>.tab {
|
|
width: 100%;
|
|
display: block;
|
|
.flex-shrink(0);
|
|
}
|
|
}
|
|
}
|
|
.tabs-swipeable-wrap {
|
|
height: 100%;
|
|
> .tabs > .tab {
|
|
display: block;
|
|
}
|
|
} |