Compare commits

..

2 Commits

@ -1,15 +1,16 @@
---
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: true vueIndentScriptAndStyle: false
singleAttributePerLine: true singleAttributePerLine: true
plugins: ['prettier-plugin-tailwindcss'] plugins: [prettier-plugin-tailwindcss]

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

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

Loading…
Cancel
Save