feat: layout for GLNs

This commit is contained in:
Iain Learmonth 2026-02-08 13:41:32 +00:00
parent 7d650337f1
commit bcdfb3c0fd
2 changed files with 86 additions and 0 deletions

47
assets/css/datapage.scss Normal file
View file

@ -0,0 +1,47 @@
@use "hugo:vars" as v;
@media(min-width: v.$bp_mobile) {
.datapage {
display: flex;
flex-direction: row;
gap: 1rem;
}
.datapage__content {
order: 1;
}
.datapage__data {
order: 2;
min-width: 350px;
}
.datapage__datacard {
background-color: white;
box-shadow: 0 1.5rem 4rem rgba(22,28,45,0.05) !important;
padding: 1.5rem;
}
}
.datapage__datacard {
address {
white-space: preserve-breaks;
font-style: normal;
}
h3 {
font-weight: 600;
}
h4 {
color: v.$color_tertiary;
font-variant: small-caps;
}
}
.datapage__content {
img {
max-width: 100%;
}
}