1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-14 14:20:28 +05:30
Piped/src/App.vue

58 lines
1.2 KiB
Vue
Raw Normal View History

2020-12-09 19:03:29 +05:30
<template>
2021-05-10 23:44:28 +05:30
<div class="uk-container uk-container-expand uk-light uk-height-viewport" style="background: #0b0e0f">
2021-04-01 03:39:39 +05:30
<Navigation />
2020-12-09 19:03:29 +05:30
<router-view />
2021-03-29 12:08:29 +05:30
<div style="text-align: center">
2021-05-10 23:44:28 +05:30
<a aria-label="GitHub" href="https://github.com/TeamPiped/Piped">
<font-awesome-icon :icon="['fab', 'github']"></font-awesome-icon>
2021-03-29 12:08:29 +05:30
</a>
&nbsp;
<a href="bitcoin://13MoHioctZkC7LDSZSb4m32TDT8xNmei1p">
<font-awesome-icon :icon="['fab', 'bitcoin']"></font-awesome-icon>
2021-03-29 12:08:29 +05:30
13MoHioctZkC7LDSZSb4m32TDT8xNmei1p
</a>
</div>
2020-12-09 19:03:29 +05:30
</div>
</template>
<script>
2021-04-01 03:39:39 +05:30
import Navigation from "@/components/Navigation";
2020-12-09 19:03:29 +05:30
export default {
2021-04-01 03:39:39 +05:30
components: {
2021-05-10 23:44:28 +05:30
Navigation,
},
2020-12-09 19:03:29 +05:30
};
</script>
<style>
#app {
background: #0b0e0f;
}
::-webkit-scrollbar {
background-color: #15191a;
color: #c5bcae;
}
::-webkit-scrollbar-thumb {
background-color: #4b4f52;
}
::-webkit-scrollbar-thumb:hover {
background-color: #5b6469;
}
::-webkit-scrollbar-thumb:active {
background-color: #485053;
}
::-webkit-scrollbar-corner {
background-color: #0b0e0f;
}
2021-02-24 15:05:41 +05:30
* {
scrollbar-color: #15191a #444a4e;
}
</style>