60af367b18
## Issue Fixes 4524 `[mobile] in channel search not available` ## Changes There are currently 3 wunderbars: (1) header (2) channel list (3) downloaded list. The additional `wrapperStyle` in the header made it hard to find a solution that works for all 3, so I split 2 and 3 into `wunderbar__input--inline`.
87 lines
1.6 KiB
SCSS
87 lines
1.6 KiB
SCSS
.claim-search__menus {
|
|
background-color: var(--color-card-background);
|
|
position: relative;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: var(--spacing-m);
|
|
padding-bottom: var(--spacing-s);
|
|
margin-top: var(--spacing-m);
|
|
color: var(--color-text-subtitle);
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
.claim-search__dropdown {
|
|
padding: 0 var(--spacing-m);
|
|
max-width: 400px;
|
|
font-size: var(--font-body);
|
|
background-color: var(--color-card-background);
|
|
width: var(--option-select-width);
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.claim-search__dropdown--selected {
|
|
background-color: var(--color-primary-alt);
|
|
}
|
|
|
|
.claim-search__input-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: var(--font-body);
|
|
|
|
.button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0;
|
|
}
|
|
|
|
&:not(:first-of-type) {
|
|
padding-left: var(--spacing-m);
|
|
}
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
padding-left: 0px;
|
|
|
|
&:not(:first-of-type) {
|
|
margin-top: var(--spacing-s);
|
|
}
|
|
|
|
&:not(:first-of-type) {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.claim-search__input-special {
|
|
font-weight: var(--font-weight-bold);
|
|
}
|
|
|
|
.claim-search__extra {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.claim-search__top {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.claim-search__top > div {
|
|
@media (max-width: $breakpoint-small) {
|
|
margin: var(--spacing-xxs) 0;
|
|
}
|
|
}
|
|
|
|
.claim-search__top-row {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
}
|