2022-03-07 16:42:47 -08:00
|
|
|
.tabs {
|
|
|
|
flex: 1 1;
|
|
|
|
padding: 0 var(--gap);
|
|
|
|
}
|
|
|
|
|
2022-03-07 18:36:36 -08:00
|
|
|
.mobile {
|
|
|
|
position: relative;
|
2022-03-08 16:39:24 -08:00
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
display: none !important;
|
2022-03-07 18:36:36 -08:00
|
|
|
}
|
|
|
|
|
2022-03-07 16:54:33 -08:00
|
|
|
@media only screen and (max-width: 650px) {
|
2022-03-07 16:42:47 -08:00
|
|
|
.tabs {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-08 16:39:24 -08:00
|
|
|
|
|
|
|
.controls {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2022-03-07 16:42:47 -08:00
|
|
|
}
|
|
|
|
|
2022-03-09 01:50:55 -08:00
|
|
|
.controls button:active,
|
|
|
|
.controls button:focus,
|
|
|
|
.controls button:hover {
|
|
|
|
outline: 1px solid rgba(0, 0, 0, 0.2);
|
2022-03-07 16:42:47 -08:00
|
|
|
}
|
2022-03-07 16:54:33 -08:00
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectContent {
|
|
|
|
width: auto;
|
|
|
|
height: 18px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|