Test Blog
P
By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you really are just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive.
Once you reach those goals, things start to become "usual". You will then start to expect more and set higher goals. At a certain point, I start to not care about those numbers of stars or downloads anymore. It’s not necessarily a bad thing as they are not the metrics I should be focusing on anyway, but I sometimes miss the old days when I could get joy from those simple things.
Quote
This is a quote
Strong
Text
A
Code
const bg = ref<HTMLDivElement | null>(null)
const themeStore = useThemeStore()
onMounted(() => {
watch(
() => themeStore.isDark,
(isDark) => {
if (bg.value) {
useBackgroundDots(bg.value, isDark)
}
},
{ immediate: true },
)
})
Image
Li
- List Item 1
- List Item 2
- List Item 3