Skip to content

Commit 6ecd646

Browse files
committed
chore: removed important and targeted header
1 parent 7464cc4 commit 6ecd646

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/components/Modals/FundsModal/FundsModal.scss

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
.funds-modal {
22
@include default-modal;
3-
4-
&__header {
5-
padding-top: 1rem !important;
3+
.deriv-modal__header {
4+
padding-top: 1rem;
65

76
@include mobile-or-tablet-screen {
87
padding-top: 0 !important;
@@ -26,7 +25,7 @@
2625
gap: 0.8rem;
2726

2827
@include mobile-or-tablet-screen {
29-
padding-bottom: 1.6rem;
28+
padding: 1.6rem;
3029
}
3130
}
3231
}

src/components/Modals/FundsModal/FundsModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type TFundsModalProps = {
1010
const FundsModal = ({ isModalOpen, onRequestClose }: TFundsModalProps) => {
1111
return (
1212
<Modal ariaHideApp={false} className='funds-modal' isOpen={isModalOpen} shouldCloseOnOverlayClick={false}>
13-
<Modal.Header className='funds-modal__header' hideBorder hideCloseIcon>
13+
<Modal.Header hideBorder hideCloseIcon>
1414
<Text size='md' weight='bold'>
1515
<Localize i18n_default_text='How to fund your trades?' />
1616
</Text>

0 commit comments

Comments
 (0)