2021-05-20 20:06:56 +00:00
|
|
|
/* Copyright 2021 Oliver Smith
|
2021-11-18 17:59:46 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
2020-08-10 11:43:04 +00:00
|
|
|
|
2020-11-22 14:59:03 +00:00
|
|
|
@media (max-width: 700px) {
|
2021-11-27 21:26:45 +00:00
|
|
|
.findbar-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
height: 150px !important;
|
2021-11-18 17:59:46 +00:00
|
|
|
}
|
2021-11-27 21:26:45 +00:00
|
|
|
|
|
|
|
.findbar-textbox {
|
|
|
|
/* Overwrite fixed size, so the X on the right shows up */
|
|
|
|
width: 100% !important;
|
2021-11-18 17:59:46 +00:00
|
|
|
}
|
2021-11-27 21:26:45 +00:00
|
|
|
|
|
|
|
.findbar-container checkbox {
|
|
|
|
/* Add space around the buttons, looks nicer and makes it easier to hit
|
|
|
|
* them with the finger. */
|
|
|
|
padding: 10px 0px;
|
2021-11-18 17:59:46 +00:00
|
|
|
}
|
2020-08-10 11:43:04 +00:00
|
|
|
}
|