2022-03-07 19:42:47 -05:00
|
|
|
.tabs {
|
|
|
|
flex: 1 1;
|
|
|
|
padding: 0 var(--gap);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs .current {
|
|
|
|
border-bottom: 2px solid initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs :global(.content) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-03-07 21:36:36 -05:00
|
|
|
.mobile {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2022-03-07 19:54:33 -05:00
|
|
|
@media only screen and (max-width: 650px) {
|
2022-03-07 19:42:47 -05:00
|
|
|
.tabs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
flex: 1 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls :global(.menu-toggle) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
min-width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2022-03-07 19:54:33 -05:00
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectContent {
|
|
|
|
width: auto;
|
|
|
|
height: 18px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectContent :global(svg) {
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|