Here is a dataset you might be interested in:
@@ -91,7 +93,9 @@ const ourResearchButtonText = computed(() => pathOr('', ['fields', 'ourResearchB
const ourResearchButtonLink = computed(() => pathOr('', ['fields', 'ourResearchButtonLink'], consortiaItem.value))
const learnMore = computed(() => pathOr([], ['fields', 'learnMore'], consortiaItem.value))
const logoUrl = computed(() => pathOr('', ['fields', 'logo', 'fields', 'file', 'url'], consortiaItem.value))
-const readMoreLink = computed(() => pathOr('', ['fields', 'readMoreLink'], consortiaItem.value))
+const forInvestigators = computed(() => pathOr('', ['fields', 'forInvestigators'], consortiaItem.value))
+const forInvestigatorsButtonLabel = computed(() => pathOr('', ['fields', 'forInvestigatorsButtonLabel'], consortiaItem.value))
+const forInvestigatorsButtonLink = computed(() => pathOr('', ['fields', 'forInvestigatorsButtonLink'], consortiaItem.value))
const featuredDatasetLink = computed(() => {
const datasetPath = featuredDataset.value?.id ? `/datasets/${featuredDataset.value.id}` : '/';
@@ -206,24 +210,27 @@ onMounted(async () => {
background-color: white;
}
-.row-item {
- width: 49%;
+.row {
display: flex;
-
+ gap: 20px;
@media screen and (max-width: 767px) {
- width: 100%;
+ flex-direction: column;
}
}
-.row {
+.row-item {
+ flex: 1;
display: flex;
- justify-content: space-between;
-
+ flex-direction: row;
@media screen and (max-width: 767px) {
- flex-direction: column;
+ width: 100%;
+ }
+ & > :deep(.subpage-col) {
+ flex: 1
}
}
+
.gallery-items-container {
background-color: white;
border: 1px solid $lineColor1;