Compare commits

..

No commits in common. '653abd7f45babeb8f8c4afbe59533d851845428e' and 'd71d8639f380c241e2efcffde6455a77e17580d1' have entirely different histories.

@ -1,16 +1,15 @@
---
printWidth: 80
tabWidth: 4
useTabs: true
semi: false
singleQuote: true
quoteProps: consistent
quoteProps: 'consistent'
jsxSingleQuote: true
trailingComma: es5
trailingComma: 'es5'
bracketSpacing: true
bracketSameLine: true
arrowParens: always
htmlWhitespaceSensitivity: strict
vueIndentScriptAndStyle: false
arrowParens: 'always'
htmlWhitespaceSensitivity: 'strict'
vueIndentScriptAndStyle: true
singleAttributePerLine: true
plugins: [prettier-plugin-tailwindcss]
plugins: ['prettier-plugin-tailwindcss']

@ -16,20 +16,9 @@ body::-webkit-scrollbar,
}
input {
@apply border-none bg-primary p-2;
@apply bg-primary border-none p-2;
}
input:focus {
@apply border-none bg-secondary outline-none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hidden {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
@apply bg-secondary border-none outline-none;
}

@ -6,11 +6,8 @@ const parsedMarkdown = computed(() => {
</script>
<template>
<div
class="scrollbar-hidden flex h-full min-h-screen w-full flex-col items-center overflow-y-scroll bg-secondary px-12 py-4">
<div
class="scrollbar-hidden h-full max-h-full w-full"
v-html="parsedMarkdown">
<div class="flex h-full min-h-screen w-full flex-col items-center overflow-y-scroll bg-secondary px-12 py-4">
<div class="h-full max-h-full w-full" v-html="parsedMarkdown">
</div>
</div>
</template>

Loading…
Cancel
Save