Skip to content

Commit

Permalink
fix: remove marketing promo code
Browse files Browse the repository at this point in the history
Description:
Remove marketing promo from base container
VAN-1906
  • Loading branch information
Ahtesham Quraish authored and Ahtesham Quraish committed Apr 15, 2024
1 parent 4db3894 commit 5028d1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
9 changes: 3 additions & 6 deletions src/base-container/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,17 @@ const BaseContainer = ({
<ModalDialog
isOpen={open}
onClose={setOpen}
size="fullscreen"
size="lg"
variant="default"
title="authn-component"
className="bg-light-400"
className="bg-light-200"
hasCloseButton
>
<ModalDialog.Body className="modal-body-container overflow-hidden">
<div className="d-flex w-100 h-100">
<div className="w-50 d-flex">
<div className="w-100 d-flex">
{children}
</div>
<div className="w-50 d-flex">
<div className="w-100 h-100 bg-dark-500" />
</div>
</div>
</ModalDialog.Body>
{footerText && (
Expand Down
6 changes: 2 additions & 4 deletions src/base-container/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
}

// This class is related to close button of modal
.pgn__modal-close-container {
.pgn__modal-close-container .pgn__modal-close-button {
background: $white;
border-radius: 50%;
color: $light-700;
border: 2px solid $light-500;
}

.pgn__modal-close-container .btn-icon__icon-container {
color: $light-700;
}


0 comments on commit 5028d1b

Please sign in to comment.