Skip to content

Commit

Permalink
fix: update machine deploy form UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay-Topher committed Feb 22, 2024
1 parent 7a91c70 commit 441fd8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/app/base/components/SectionHeader/_index.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
@mixin SectionHeader {
.section-header {
padding-top: $spv--medium;
position: sticky;
top: 0;
background: $color-x-light;
border-bottom: $border;
z-index: 2; // Ensure title displays above notification bar when scrolled
}

.section-header__title {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ export const DeployForm = ({
onSuccess={clearSidePanelContent}
processingCount={processingCount}
selectedCount={machines ? machines.length : selectedCount ?? 0}
showProcessingCount={false}
validationSchema={DeploySchema}
>
<DeployFormFields />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@ export const DeployFormFields = (): JSX.Element => {
</Col>
</Row>
)}
<hr className="u-sv1" />
</div>
</>
);
Expand Down

0 comments on commit 441fd8f

Please sign in to comment.