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) O3-3915: The buttons in the refine-search overlay for the patient search button are partially hidden in a desktop layout #1311

Merged
merged 2 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ const RefineSearch: React.FC<RefineSearchProps> = ({ setFilters, inTabletOrOverl
}

return (
<form onSubmit={handleSubmit} className={styles.refineSeachContainer} data-openmrs-role="Refine Search">
<form onSubmit={handleSubmit} className={styles.refineSearchContainer} data-openmrs-role="Refine Search">
<h2 className={styles.productiveHeading02}>{t('refineSearch', 'Refine search')}</h2>
<div className={styles.field}>
<div className={styles.labelText}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@use '@carbon/type';
@use '@openmrs/esm-styleguide/src/vars' as *;

.refineSeachContainer {
.refineSearchContainer {
h2 {
margin: layout.$spacing-03 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
.desktopOverlay {
position: fixed;
top: layout.$spacing-09;
bottom: 0;
right: 0;
height: 100vh;
width: 26.25rem;
background-color: $ui-01;
border-left: 1px solid $text-03;
Expand Down
Loading