koel/resources/assets/js/components/ui/OfflineNotification.vue

40 lines
821 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="offline">
<icon-layers fixed-width>
<icon :icon="faWifi" fixed-width size="xl"/>
<icon :icon="faSlash" fixed-width size="lg" transform="up-2"/>
</icon-layers>
<span class="text">Youre offline.</span>
</div>
</template>
<script lang="ts" setup>
import { faSlash, faWifi } from '@fortawesome/free-solid-svg-icons'</script>
<style lang="scss" scoped>
.offline {
color: #ed5135;
width: 144px;
height: 42px;
background: #fff;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
position: fixed;
z-index: 10000;
left: 1.6rem;
bottom: calc(var(--footer-height) + 1.2rem);
box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
.text {
color: #222;
}
.fa-slash {
filter: drop-shadow(0 2px 0 #fff);
}
</style>