Files
aranroig.com/frontend/app/components/content/ArtColumns.vue
Aran Roig 3759f5b5c8
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 41s
Performance improvements
2026-04-13 23:03:36 +02:00

10 lines
312 B
Vue

<template>
<div style="display: flex; gap: 1rem; max-height: calc(100vh - 130px);">
<div style="flex: 5; overflow-y: auto; text-align: center;">
<slot name="left" />
</div>
<div style="flex: 2; overflow-y: auto; margin-left: 25px;">
<slot name="right" />
</div>
</div>
</template>