-
Notifications
You must be signed in to change notification settings - Fork 0
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
ca87353
commit 20e8587
Showing
5 changed files
with
71 additions
and
24 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
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,9 +1,9 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); | ||
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); | ||
|
||
.v-btn { | ||
font-family: 'Inter', sans-serif; | ||
font-family: "Inter", sans-serif; | ||
letter-spacing: normal; | ||
} | ||
.v-btn__content { | ||
letter-spacing: normal; | ||
} | ||
} |
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,41 +1,48 @@ | ||
<script setup> | ||
import {ref} from "vue" | ||
import { ref } from "vue"; | ||
const navItems = ref([ | ||
{ | ||
title: 'All Sessions', | ||
title: "All Sessions", | ||
disabled: false, | ||
href: '/', | ||
href: "/", | ||
}, | ||
{ | ||
title: 'Products for Dry Tropospheric Correction', | ||
title: "Products for Dry Tropospheric Correction", | ||
disabled: false, | ||
href: '/products-for-dry-tropospheric-correction', | ||
href: "/products-for-dry-tropospheric-correction", | ||
}, | ||
{ | ||
title: 'Variables/catal...', | ||
title: "Variables/catal...", | ||
disabled: true, | ||
}, | ||
]) | ||
]); | ||
</script> | ||
<template> | ||
<v-app-bar class="navbar" color="primary" app> | ||
<v-toolbar-title> <v-breadcrumbs :items="navItems"> | ||
<template v-slot:divider> | ||
<v-icon icon="mdi-chevron-right"></v-icon> | ||
</template> | ||
</v-breadcrumbs></v-toolbar-title> | ||
|
||
<v-toolbar-title> | ||
<v-breadcrumbs :items="navItems"> | ||
<template v-slot:divider> | ||
<v-icon icon="mdi-chevron-right"></v-icon> | ||
</template> </v-breadcrumbs | ||
></v-toolbar-title> | ||
|
||
<v-col cols="auto"> | ||
<v-btn size="large" prepend-icon="mdi-source-pull" variant="flat" class="text-capitalize font-weight-medium" color="btn-primary">Create New Session</v-btn> | ||
<v-btn | ||
size="large" | ||
prepend-icon="mdi-source-pull" | ||
variant="flat" | ||
class="text-capitalize font-weight-medium" | ||
color="btn-primary" | ||
>Create New Session</v-btn | ||
> | ||
</v-col> | ||
</v-app-bar> | ||
</template> | ||
|
||
<style> | ||
.navbar .v-breadcrumbs-item.v-breadcrumbs-item--disabled { | ||
color: #ADDDFF; | ||
color: #adddff; | ||
opacity: 0.8; | ||
} | ||
</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
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,5 +1,41 @@ | ||
<script setup></script> | ||
<script setup> | ||
const files = [ | ||
{ | ||
color: "blue", | ||
icon: "mdi-clipboard-text", | ||
subtitle: "Jan 20, 2014", | ||
title: "Adding SO-FRESH product", | ||
}, | ||
{ | ||
color: "amber", | ||
icon: "mdi-gesture-tap-button", | ||
subtitle: "Jan 10, 2014", | ||
title: "Kitchen remodel", | ||
}, | ||
]; | ||
</script> | ||
|
||
<template> | ||
<h1>List of sessions</h1> | ||
<v-list> | ||
<v-list-item | ||
v-for="file in files" | ||
:key="file.title" | ||
:subtitle="file.subtitle" | ||
:title="file.title" | ||
> | ||
<template v-slot:prepend> | ||
<v-avatar :color="file.color"> | ||
<v-icon color="white">{{ file.icon }}</v-icon> | ||
</v-avatar> | ||
</template> | ||
|
||
<template v-slot:append> | ||
<v-btn | ||
color="grey-lighten-1" | ||
icon="mdi-information" | ||
variant="text" | ||
></v-btn> | ||
</template> | ||
</v-list-item> | ||
</v-list> | ||
</template> |