Skip to content
Merged
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": ">=11.0.0 <12.0.0",
"version": ">=11.0.0 <11.12.0",
"onFail": "download"
}
}
Expand Down
2 changes: 2 additions & 0 deletions webapp/src/assets/logos/AriadneLabsLogo.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<template>
<svg
width="100%"
height="100%"
preserveAspectRatio="xMidYMid meet"
data-bbox="35.22 28.28 319.76 143.36"
xmlns="http://www.w3.org/2000/svg"
Expand Down
2 changes: 2 additions & 0 deletions webapp/src/assets/logos/EPFL.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<template>
<svg
width="100%"
height="100%"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
Expand Down
13 changes: 12 additions & 1 deletion webapp/src/components/containers/BaseLayout.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<template>
<div id="base-container" class="flex flex-col h-full w-full overflow-y-auto">
<div
id="base-container"
ref="baseContainer"
class="flex flex-col h-full w-full overflow-y-auto"
>
<main class="m-4 md:m-8 grow">
<slot />
</main>
Expand Down Expand Up @@ -33,3 +37,10 @@
</footer>
</div>
</template>

<script lang="ts" setup>
import { provide, useTemplateRef } from "vue";

const baseContainer = useTemplateRef<HTMLElement>("baseContainer");
provide("scrollContainer", baseContainer);
</script>
Loading