Package: add 1000-hours repo in workspace (#337)

* add 1000-hours repo in workspace

* update README
This commit is contained in:
an-lee
2024-02-20 15:40:18 +08:00
committed by GitHub
parent 66bad2002c
commit dab09ea644
385 changed files with 21653 additions and 36 deletions

View File

@@ -0,0 +1,52 @@
<script setup>
import DefaultTheme from 'vitepress/theme'
import SpeakWordInlineConverter from '../components/SpeakWordInlineConverter.vue'
const { Layout } = DefaultTheme
</script>
<template>
<Layout>
<template #doc-after>
<ClientOnly>
<SpeakWordInlineConverter />
</ClientOnly>
</template>
</Layout>
</template>
<style lang="scss">
@import url(../components/SpeakWord.scss);
.speak-word-wrapper {
display: inline-block;
margin: 0px;
vertical-align: middle;
}
.speak-word.inline {
border: none;
display: flex;
padding: 0;
.word {
display: inline-block;
}
.ctrl-part {
.play-button {
display: flex;
width: 24px;
height: 24px;
align-items: center;
justify-content: center;
.icon {
width: 16px;
height: 16px;
}
}
.accent-label {
font-size: 14px;
display: inline-block;
color: white;
}
}
}
</style>