This removes the default search bar (and settings menu) to emulate the behavior of the DuckDuckGo mobile app.
Remove search bar in duckduckgo.com by bibanez

Details
Authorbibanez
LicenseCC Zero
Categorysearch, duckduckgo
Created
Updated
Code size509 B
Code checksum3bb5e732
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Remove search bar in duckduckgo.com
@version 20220216.00.13
@namespace userstyles.world/user/bibanez
@description This removes the default search bar (and settings menu) to emulate the behavior of the DuckDuckGo mobile app.
@author bibanez
@license CC Zero
==/UserStyle== */
@-moz-document domain("duckduckgo.com") {
.header__shrink-beyond-min-size {
display: none;
}
.header-wrap {
padding-top: 0;
}
.body--serp .header {
min-height: 0px;
}
}