framework7-without-localstorage
Version:
Full featured mobile HTML framework for building iOS & Android apps
34 lines • 573 B
text/less
/* === 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);
}
}
&.not-animated > .tabs {
.transition(0ms);
}
}
.tabs-swipeable-wrap {
height: 100%;
> .tabs > .tab {
display: block;
}
}