refactor: update layout and styling of company dashboard page

This commit is contained in:
2025-11-03 20:00:58 +01:00
parent 04acbf1b58
commit 6d2f57393d

View File

@@ -18,26 +18,28 @@ const user = useSanctumUser<User>();
<template> <template>
<v-container fluid> <v-container fluid>
<v-card id="footer-card"> <v-card id="page-container-card">
<h1 class="ml-6">Vitajte, {{ user?.name }} <em>({{ user?.company_data?.name }})</em></h1> <h1>Vitajte, {{ user?.name }} <em>({{ user?.company_data?.name }})</em></h1>
<!-- spacer --> <!-- spacer -->
<div style="height: 40px;"></div> <div style="height: 40px;"></div>
<td class="text-left"> <v-btn prepend-icon="mdi-account-circle" color="blue" class="mr-2">
<v-btn prepend-icon="mdi-pencil" color="orange" class="mr-2 ml-6 mb-4"> Môj profil
Môj profil </v-btn>
</v-btn> <v-btn prepend-icon="mdi-briefcase" color="blue" class="mr-2" to="/dashboard/company/internship">
Praxe
<v-btn prepend-icon="mdi-pencil" color="orange" class="mr-2 ml-6 mb-4" :to="'/dashboard/company/internship'"> </v-btn>
Editovať
</v-btn> <!-- spacer -->
</td> <div style="height: 40px;"></div>
</v-card> </v-card>
</v-container> </v-container>
</template> </template>
<style scoped> <style scoped>
#page-container-card {
padding-left: 10px;
padding-right: 10px;
}
</style> </style>