-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2036e4
commit 4fd31ef
Showing
9 changed files
with
138 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// Ref: https://github.com/nuxt-community/vuetify-module#customvariables | ||
// | ||
// The variables you want to modify | ||
// $font-size-root: 20px; | ||
$card-border-radius: 10px!important; | ||
$menu-content-border-radius: 50%!important; | ||
$btn-text-transform: 'capitalize'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<template> | ||
<v-container> | ||
<v-col cols="12"> | ||
<h1>Hi {{ $auth.user.name }}</h1> | ||
</v-col> | ||
<v-col cols="12" md="8"> | ||
<v-tabs grow center-active> | ||
<v-tab to="/home">Home</v-tab> | ||
<v-tab to="/home/deployments">Deployments</v-tab> | ||
<v-tab to="/home/applications">Applications</v-tab> | ||
<v-tab to="/home/settings">Settings</v-tab> | ||
</v-tabs> | ||
<nuxt-child /> | ||
</v-col> | ||
</v-container> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<h1>Applications page</h1> | ||
</template> | ||
<script> | ||
export default { | ||
head() { | ||
return { | ||
title: 'Applications 🧑🏽💻', | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<h1>Deployments page</h1> | ||
</template> | ||
<script> | ||
export default { | ||
head() { | ||
return { | ||
title: 'Deployments 🚀', | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
<template> | ||
<h1>You are logged as {{ $auth.user.name }}</h1> | ||
<v-row> | ||
<v-col cols="12" md="4"> | ||
<v-card outlined class="my-5"> | ||
<v-sheet | ||
elevation="2" | ||
class="stats-sheet display-3" | ||
color="primary" | ||
height="70" | ||
> | ||
23 | ||
</v-sheet> | ||
<v-card-text class="text-center title">Applications</v-card-text> | ||
</v-card> | ||
</v-col> | ||
|
||
<v-col cols="12" md="4"> | ||
<v-card outlined class="my-5"> | ||
<v-sheet | ||
elevation="2" | ||
class="stats-sheet display-3" | ||
color="success" | ||
height="70" | ||
> | ||
55 | ||
</v-sheet> | ||
<v-card-text class="text-center title">Deployments</v-card-text> | ||
</v-card> | ||
</v-col> | ||
|
||
<v-col cols="12" md="4"> | ||
<v-card outlined class="my-5"> | ||
<v-sheet | ||
elevation="2" | ||
class="stats-sheet display-3" | ||
color="error" | ||
height="70" | ||
> | ||
78 | ||
</v-sheet> | ||
<v-card-text class="text-center title">Failed deployments</v-card-text> | ||
</v-card> | ||
</v-col> | ||
</v-row> | ||
</template> | ||
<style scoped> | ||
.stats-sheet { | ||
margin-top: -15px; | ||
margin-left: 7px; | ||
margin-right: 7pt; | ||
border-radius: 5px !important; | ||
text-align: center; | ||
color: white; | ||
padding: 4px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<template> | ||
<h1>Settings</h1> | ||
</template> | ||
<script> | ||
export default { | ||
head() { | ||
return { | ||
title: 'Settings ⚙️', | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters