|
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: row; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
align-items: flex-end; |
|
|
|
|
padding-bottom: calc(32rem / 16); |
|
|
|
|
border-bottom: calc(1rem / 16) solid var(--primary-heading); |
|
|
|
|
} |
|
|
|
@ -33,3 +33,20 @@ a.currentAdvice { |
|
|
|
|
.content { |
|
|
|
|
padding-bottom: calc(48rem / 16); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: calc(768rem / 16)) { |
|
|
|
|
.titleContainer { |
|
|
|
|
flex-direction: column-reverse; |
|
|
|
|
align-items: center; |
|
|
|
|
padding-bottom: unset; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.title { |
|
|
|
|
padding-right: unset; |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.codey { |
|
|
|
|
width: calc(140rem / 16); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|