Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add max width to blog posts #142

Merged
merged 2 commits into from
Feb 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions pages/blog/_slug.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ export default {
},
};
</script>

<style>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something funky is happening with the switch to hamburger menu. Did this ever happen before? I'll investigate but you might immediately know what's causing this.

Screen.Recording.2024-01-29.at.2.08.34.PM.mov

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

which browser are you using? i'm not seeing this behavior on chrome

.content {
ashleysyg marked this conversation as resolved.
Show resolved Hide resolved
/* ... */
display: grid;
grid-template-columns: 1fr min(100ch, 100%) 1fr;
ashleysyg marked this conversation as resolved.
Show resolved Hide resolved
}

.content > * {
grid-column: 2;
}
</style>
Loading