1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-26 11:16:51 +02:00
market/src/components/Search/index.module.css
Sebastian Abromeit 8249ff1397
update ui components for mobile (#1495)
* fix mobile layout for filter buttons

* fix tabs component mobile view

* fix zoom in on input focus on mobile devices

* reduce searchbar font-size
2022-06-28 13:55:29 +01:00

20 lines
324 B
CSS

.row {
display: inline-flex;
flex-direction: column;
align-items: stretch;
justify-content: space-between;
width: 100%;
white-space: nowrap;
margin-bottom: calc(var(--spacer) / 2);
}
.row > div {
margin-bottom: calc(var(--spacer) / 2);
}
@media (min-width: 55rem) {
.row {
flex-direction: row;
}
}