af0073b014
Use multiple lines now, instead of making fonts tiny and hiding buttons.
22 lines
565 B
CSS
22 lines
565 B
CSS
/* Copyright 2021 Oliver Smith
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
@media (max-width: 700px) {
|
|
.findbar-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
height: 150px !important;
|
|
}
|
|
|
|
.findbar-textbox {
|
|
/* Overwrite fixed size, so the X on the right shows up */
|
|
width: 100% !important;
|
|
}
|
|
|
|
.findbar-container checkbox {
|
|
/* Add space around the buttons, looks nicer and makes it easier to hit
|
|
* them with the finger. */
|
|
padding: 10px 0px;
|
|
}
|
|
}
|