Add a channel page and fix some things.

This commit is contained in:
FireMasterK
2020-11-13 02:12:02 +05:30
parent 14a1d96c65
commit 98640e6d92
9 changed files with 145 additions and 59 deletions

View File

@@ -15,7 +15,7 @@
</div>
</nav>
<div class="uk-container uk-light" style="background:#0b0e0f">
<div class="uk-container uk-container-expand uk-light" style="background:#0b0e0f">
<router-view />
</div>
</template>
@@ -34,4 +34,29 @@ export default {
#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;
}
* {
scrollbar-color: #15191a #444a4e;
}
</style>