generated from electron-vite/electron-vite-vue
-
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.
Merge pull request #7 from AQUASINE/staging
Staging
- Loading branch information
Showing
24 changed files
with
466 additions
and
253 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
Binary file not shown.
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 was deleted.
Oops, something went wrong.
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,68 @@ | ||
<template> | ||
<div class="bg-primary-alt flex width-100 pt-3 pb-3 container__top-bar"> | ||
<div class="flex justify-center items-center pl-3"> | ||
<img src="/podium.svg" alt="Podium Logo" class="logo"/> | ||
<div class="font-bold pl-2"> | ||
Podium | ||
</div> | ||
</div> | ||
<div class="absolute flex justify-center items-center w-full top-0 pt-2"> | ||
<div class="heading__active-config"> | ||
Active Configuration | ||
</div> | ||
<div class="ml-3 container__configuration-select"> | ||
<VueSelect :options="['translation-chatbox-app','default']" class="item__configuration-select"></VueSelect> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
import VueSelect from 'vue-select' | ||
export default { | ||
name: 'AppTopbar', | ||
components: {VueSelect} | ||
} | ||
</script> | ||
<style> | ||
select { | ||
border-radius: 8px; | ||
font-size: 1em; | ||
font-weight: 500; | ||
font-family: inherit; | ||
width: 400px; | ||
max-width: 33vw; | ||
height: 35px; | ||
background-color: var(--primary-xtra-dark); | ||
color: #ffffff; | ||
border: 1px solid transparent; | ||
cursor: pointer; | ||
transition: border-color 0.25s; | ||
} | ||
select:hover { | ||
border-color: var(--primary-dark) | ||
} | ||
.container__configuration-select { | ||
width: 400px; | ||
max-width: 33vw; | ||
} | ||
.item__configuration-select { | ||
font-size: 0.9rem; | ||
} | ||
.container__top-bar { | ||
position: relative; | ||
width: 100%; | ||
z-index: 1000; | ||
} | ||
.heading__active-config { | ||
font-size: 0.95em; | ||
font-weight: 500; | ||
} | ||
</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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,11 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
|
||
</template> | ||
|
||
<style scoped> | ||
</style> |
Oops, something went wrong.