Verified Commit 74f98529 authored by Jakob Moser's avatar Jakob Moser
Browse files

Add responsiveness for search bar

parent cb0fde22
Loading
Loading
Loading
Loading
+19 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 * Author: personads :: Maximilian Müller-Eberstein (ursprüngliche Version und Design); Jakob Moser
 * Author URI: https://personads.me/
 *
 * Version: 2.17.1
 * Version: 2.17.2
 * Requires PHP: 8.0
 *
 * License: GNU General Public License v3.0
@@ -877,6 +877,24 @@ dialog input[type=search] {
    margin-right: 0;
}

@media (max-width: 1300px) {
    dialog input[type=search] {
        width: 50vw;
    }
}

@media (max-width: 740px) {
    dialog input[type=search] {
        width: 70vw;
    }
}

@media (max-width: 360px) {
    dialog input[type=search] {
        width: 60vw;
    }
}

dialog input[type="search"] + button {
    margin-left: 0;
    border-radius: 0 5px 5px 0;