Add acknowledgement part at end of page

Specifically for Australia or other location needing an acknowledgement
This commit is contained in:
2022-07-31 01:04:24 +02:00
parent 39c8f6dd14
commit 4880483933
3 changed files with 57 additions and 0 deletions

View File

@@ -235,6 +235,47 @@
// Newsletter block
.grid-modules {
padding-bottom: 0;
& + .acknowledgement {
margin-top: 48px;
@include bp (sm) {
margin-top: 72px;
}
}
}
// Acknowledgement
.acknowledgement {
display: flex;
align-items: center;
max-width: 720px;
margin: 0 auto;
padding: 0 20px;
text-align: left;
color: $color-text;
font-size: rem(10px);
line-height: 1.4;
@include bp (sm) {
padding: 0 24px;
font-size: rem(12px);
}
:global(.flag) {
flex-shrink: 0;
width: 32px;
height: 32px;
margin: 0 16px 0 0;
border-radius: 100%;
overflow: hidden;
:global(img) {
display: block;
width: 100%;
height: auto;
}
}
}
}