Skip to content

Commit

Permalink
feat: update pages to be full height and have a padding at the bottom
Browse files Browse the repository at this point in the history
Signed-off-by: tylerslaton <[email protected]>
  • Loading branch information
tylerslaton committed Mar 21, 2024
1 parent f6b5d63 commit 4cc23b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ useHead({
<div class="grid grid-rows-[60px,1fr] fixed top-0 right-0 bottom-0 left-0">
<Navigation class="h-[60px]" />
<div class="overflow-auto border-t-2 border-transparent">
<div class="p-5 lg:p-10 max-w-full w-full mx-auto lg:max-w-5xl">
<NuxtPage />
<div class="p-5 lg:p-10 max-w-full w-full h-full mx-auto lg:max-w-5xl">
<NuxtPage class="pb-10" />
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Arguments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const { tool } = defineProps<Props>()
<td class="font-semibold">
{{ arg }}
</td>
<td>{{ ucFirst(`${properties.description.trim()}`) }}</td>
<td>{{ ucFirst(`${properties.description!.trim()}`) }}</td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const featured: Tool[] = [
</script>

<template>
<div class="h-[90vh] text-center justify-start md:justify-center items-center p-10 flex flex-col">
<div class="h-full text-center justify-start md:justify-center items-center p-10 flex flex-col">
<h2 class="text-4xl md:text-5xl mb-4 mx-2">
Welcome to the GPTScript Toolbox
</h2>
Expand Down

0 comments on commit 4cc23b9

Please sign in to comment.