Skip to content

Commit 07a03a7

Browse files
authored
Blog page tweaks (#2007)
Fix a couple of bits on an older blog post and add a newline on v4 blog post to better separate CSS blocks
1 parent 9cbe840 commit 07a03a7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/app/(docs)/docs/installation/framework-guides/sveltekit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export let steps: Step[] = [
9898
lang: "svelte",
9999
code: html`
100100
<script>
101-
let { children } = $props();
101+
let { children } = $props();
102102
// [!code highlight:2]
103103
import "../app.css";
104104
</script>

src/blog/tailwindcss-v3-2/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ module.exports = {
737737
theme: {
738738
extend: {
739739
containers: {
740-
2xs: '16rem',
740+
"2xs": "16rem",
741741
// etc...
742742
},
743743
},

src/blog/tailwindcss-v4/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -644,6 +644,7 @@ We've added a new `not-*` variant which finally adds support for the CSS `:not()
644644
.not-hover\:opacity-75:not(*:hover) {
645645
opacity: 75%;
646646
}
647+
647648
@media not (hover: hover) {
648649
.not-hover\:opacity-75 {
649650
opacity: 75%;

0 commit comments

Comments
 (0)