Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the non responsiveness width of search bar #152

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions app/views/shared/_command_palette.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
<div class="fixed z-30 top-44 bg-modal border border-borderPrimary rounded-lg shadow-xl">
<div class="p-1 border-b border-borderPrimary">
<label>
<!-- TODO: Fix nonresponsive width -->
<input type="text" placeholder="Search inbox" class="w-[600px] px-2 py-1.5 bg-transparent border-none focus:ring-0 rounded-lg text-lg placeholder:text-lg placeholder:text-neutral-400">
<input type="text" placeholder="Search inbox" class="w-full lg:w-[600px] md:w-[450px] placeholder:lg:text-lg placeholder:text-sm px-2 py-1.5 bg-transparent border-none focus:ring-0 rounded-lg text-lg placeholder:text-neutral-400">
</label>
</div>
<div class="flex flex-col gap-y-0.5 p-1">
Expand Down