@@ -8,6 +8,9 @@ export const Wrapper = styled.div<{ isView: boolean }>`
88 padding: ${ ( props ) => ( props . isView ? '0 40px 0 30px' : '0' ) } ;
99 animation: ${ open } ${ fadeIn2 } ;
1010 margin: 0 0 0 auto;
11+ display: flex;
12+ flex-direction: column;
13+ gap: 25px;
1114
1215 @media (max-width: ${ STYLING . cutoffs . initial } ) {
1316 width: 100%;
@@ -25,15 +28,13 @@ export const Wrapper = styled.div<{ isView: boolean }>`
2528 font-weight: ${ ( props ) => props . theme . typography . weight . bold } !important;
2629 font-family: ${ ( props ) => props . theme . typography . family . alt1 } !important;
2730 color: ${ ( props ) => props . theme . colors . font . primary } !important;
28- margin: 0 0 5px 0;
2931 padding: 0 0 2.5px 0;
3032 }
3133
3234 h3,
3335 h4,
3436 h5,
3537 h6 {
36- margin: 50px 0 10px 0;
3738 }
3839
3940 h2 {
@@ -45,17 +46,19 @@ export const Wrapper = styled.div<{ isView: boolean }>`
4546 }
4647 }
4748
48- h3,
49+ h3 {
50+ font-size: clamp(18px, 2.5vw, 28px) !important;
51+ }
52+
4953 h4,
5054 h5 {
51- font-size: clamp(18px, 2.5vw, 28px ) !important;
55+ font-size: clamp(16px, 2vw, 24px ) !important;
5256 }
5357
5458 h6 {
5559 font-size: clamp(16px, 1.95vw, 22px) !important;
5660 color: ${ ( props ) => props . theme . colors . font . alt1 } !important;
5761 border-bottom: 1px solid transparent;
58- margin: 35px 0 0 0;
5962
6063 a {
6164 font-size: clamp(16px, 1.95vw, 22px) !important;
@@ -82,6 +85,7 @@ export const Wrapper = styled.div<{ isView: boolean }>`
8285 font-family: ${ ( props ) => props . theme . typography . family . primary } !important;
8386 color: ${ ( props ) => props . theme . colors . font . alt1 } !important;
8487 line-height: 1.65 !important;
88+ margin: -12.5px 0 0 0;
8589 }
8690
8791 a {
@@ -94,7 +98,7 @@ export const Wrapper = styled.div<{ isView: boolean }>`
9498 display: flex;
9599 flex-direction: column;
96100 gap: 7.5px;
97- margin: 7 .5px 0 0 0;
101+ margin: -12 .5px 0 0 0;
98102
99103 li {
100104 list-style-type: none;
@@ -166,7 +170,6 @@ export const Wrapper = styled.div<{ isView: boolean }>`
166170 background: ${ ( props ) => props . theme . colors . container . primary . background } ;
167171 border: 1px solid ${ ( props ) => props . theme . colors . border . primary } ;
168172 border-radius: ${ STYLING . dimensions . radius . primary } ;
169- margin: 30px 0 0 0;
170173 }
171174` ;
172175
0 commit comments