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

Fixed issue placeholder text not fully visible #10136

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/Facility/FacilityUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function FacilityUsers(props: { facilityId: string }) {
onChange={(e) => updateQuery({ username: e.target.value })}
value={qParams.username}
placeholder={t("search_by_username")}
className="w-full max-w-sm"
className="w-full max-w-sm p px-2 py-1 placeholder:text-xs max-[350px]:placeholder:text-[8px] "
Copy link
Member

@rithviknishad rithviknishad Jan 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. there are invalid classes here.
  2. we do not use such a small font-size in care, let's not deviate away from design system. we could move the search bar down.
  3. placeholder alignments are off
  4. discard changes to lockfile

/>
<Tabs
value={activeTab}
Expand Down
Loading