75c57aa3aa
Adjust the license to be able to upstream adjustments from this repository to upstream Firefox. I've asked all contributors if they are fine with the license change in the related issue. Fixes: https://gitlab.com/postmarketOS/mobile-config-firefox/-/issues/31
22 lines
556 B
CSS
22 lines
556 B
CSS
/* Copyright 2021 Oliver Smith
|
|
* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
@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;
|
|
}
|
|
}
|