Skip to content

Commit 2e4402f

Browse files
authored
Merge pull request #1160 from erikacolette29/hotfix/DTCRCMERC-3699-DEGPLLT-APR-visibility-fix
fix: (LIVE ISSUE) DE GPL LT: Calculator in app does not properly display APRs
2 parents 713635e + 5805b12 commit 2e4402f

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/components/modal/v2/parts/views/LongTerm/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
}
2222

2323
.nav__link-prefix {
24-
min-width: 315px;
2524
padding: 0px;
2625
font-size: 14px;
2726
margin: 0px;

src/components/modal/v2/styles/components/_body-content.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
@include desktop {
7777
max-height: 90vh;
7878
}
79+
@include mobile {
80+
min-width: 285px;
81+
}
7982

8083
@include lander {
8184
height: auto;

src/components/modal/v2/styles/components/_offer-accordion.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import '../globals/mixins';
2+
13
.accordion {
24
&__container {
35
border: 1px solid $light-gray;
@@ -75,12 +77,17 @@
7577
.open & {
7678
height: 172px;
7779
transition: height 0.2s linear;
80+
81+
@include smallMobile {
82+
height: 190px;
83+
}
7884
}
7985

8086
.accordion__row {
8187
display: flex;
8288
justify-content: space-between;
8389
padding: 25px 18px 0px 13px;
90+
8491
&:first-child {
8592
padding-top: 0px;
8693

0 commit comments

Comments
 (0)