feat(fe): started working on header
This commit is contained in:
parent
03551436dc
commit
d31f88cbd3
9 changed files with 209 additions and 20 deletions
27
resources/js/components/header/OnAir.vue
Normal file
27
resources/js/components/header/OnAir.vue
Normal file
|
@ -0,0 +1,27 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
//ToDo:
|
||||
// add logic to check if something is scheduled or not
|
||||
// then switch between muted or error
|
||||
const color = "error";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-sheet
|
||||
:width="100"
|
||||
border
|
||||
rounded
|
||||
:color="color"
|
||||
>
|
||||
{{ $t('header.onair') }}
|
||||
</v-sheet>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: .625rem;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue