fix: prevent syntax-highlighted spans from being displayed as block due to Tailwind .block class conflict
This commit is contained in:
parent
b173a5c509
commit
3d19f62fb4
@ -358,6 +358,11 @@
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Reset display for syntax-highlighted spans to prevent Tailwind .block conflict */
|
||||
.md-content pre code span {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
/* Copy Code Button */
|
||||
.copy-code {
|
||||
display: none;
|
||||
|
||||
@ -1373,4 +1373,4 @@ pub async fn search_posts(query: String) -> Result<PostListResponse, ServerFnErr
|
||||
}
|
||||
|
||||
Ok(PostListResponse { posts })
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user