Compare commits

..

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

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

@ -16,20 +16,9 @@ body::-webkit-scrollbar,
} }
input { input {
@apply border-none bg-primary p-2; @apply bg-primary border-none p-2;
} }
input:focus { input:focus {
@apply border-none bg-secondary outline-none; @apply bg-secondary border-none 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 */
} }

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

Loading…
Cancel
Save