Skip to content

Commit

Permalink
(fix) Remove extraneous margin from visit form (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen authored Jan 19, 2024
1 parent 8cc4c5c commit 35ba048
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const StartVisitQueueFields: React.FC = () => {
}, [queueLocations]);

return (
<div className={styles.container}>
<div>
<section className={styles.section}>
<div className={styles.sectionTitle}>{t('queueLocation', 'Queue location')}</div>
<ResponsiveWrapper isTablet={isTablet}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
@use '@carbon/styles/scss/spacing';
@use '@carbon/styles/scss/type';
@use '@carbon/layout';
@use '@carbon/type';
@import '~@openmrs/esm-styleguide/src/vars';

.sectionTitle {
@include type.type-style('heading-compact-02');
color: $text-02;
margin-bottom: spacing.$spacing-05;
margin-bottom: layout.$spacing-05;
}

.section {
margin: spacing.$spacing-03;
margin: layout.$spacing-03;
}

.sectionHidden {
display: none;
}

.container {
margin: spacing.$spacing-05;
}

0 comments on commit 35ba048

Please sign in to comment.