Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Feb 23, 2024
1 parent db5f720 commit 052a6a4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
@import '@openmrs/esm-styleguide/src/vars';

.editStatusBtn {
margin-left: spacing.$spacing-04;
border: none;
margin-left: spacing.$spacing-04;
border: none;
}

.editStatusIcon {
fill: white;
color: white;
fill: white;
color: white;
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ export default function DrugSearch({ openOrderForm }: DrugSearchProps) {
searchInputRef.current?.focus();
};

const handleSearchTermChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const handleSearchTermChange = (event: React.ChangeEvent<HTMLInputElement>) =>
setSearchTerm(event.target.value ?? '');
};

return (
<div className={styles.searchPopupContainer}>
Expand All @@ -45,11 +44,6 @@ export default function DrugSearch({ openOrderForm }: DrugSearchProps) {
openOrderForm={openOrderForm}
focusAndClearSearchInput={focusAndClearSearchInput}
/>
<OrderBasketSearchResults
searchTerm={debouncedSearchTerm}
openOrderForm={openOrderForm}
focusAndClearSearchInput={focusAndClearSearchInput}
/>
</div>
);
}
13 changes: 6 additions & 7 deletions packages/esm-patient-vitals-app/src/weight-tile/weight-tile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
@import '@openmrs/esm-styleguide/src/vars';

.label {
@include type.type-style('label-01');
color: $text-02;
@include type.type-style('label-01');
color: $text-02;
}

.content {
@include type.type-style('body-compact-01');
color: $text-02;
margin-top: 5px;
@include type.type-style('body-compact-01');
color: $text-02;
margin-top: 5px;
}

.value {
@include type.type-style('body-compact-01');

@include type.type-style('body-compact-01');
}

0 comments on commit 052a6a4

Please sign in to comment.