Files
liberama/client/components/Reader/HelpPage/HotkeysHelpPage/HotkeysHelpPage.vue
2020-03-18 20:04:44 +07:00

31 lines
659 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="page">
<span class="text-h6 text-bold">Управление с помощью горячих клавиш:</span>
<ul>
</ul>
</div>
</template>
<script>
//-----------------------------------------------------------------------------
import Vue from 'vue';
import Component from 'vue-class-component';
export default @Component({
})
class HotkeysHelpPage extends Vue {
created() {
}
}
//-----------------------------------------------------------------------------
</script>
<style scoped>
.page {
padding: 15px;
overflow-y: auto;
font-size: 120%;
line-height: 130%;
}
</style>