Skip to content

Commit

Permalink
Merge pull request #11 from kuzudb/fixes
Browse files Browse the repository at this point in the history
Fix fonts, formatting and broken links
  • Loading branch information
prrao87 authored Feb 29, 2024
2 parents 8b594e1 + 86c413d commit 743acb4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ number of clients instead.
When viewed visually, these results can be quite powerful. The following image shows result from
above, as seen in Kùzu Explorer.

![](/img/2024-02-23-transforming-your-data-2/disputed_graph_viz.png)
![](/img/2024-02-23-transforming-your-data-2/dispute_graph_viz.png)

If we simply look at aggregates based on the company and merchant, we see that the clients Olivia,
Jennifer and Cynthia from the previous query each reported disputed transactions in _different_
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BlogPost.astro
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const { title, description, pubDate, heroImage, categories, tags } =
crossorigin="anonymous"
>
</head>
<div class="prose prose-orange prose-md md:prose-lg min-w-full">
<div class="prose prose-orange prose-md md:prose-lg lg:prose-xl min-w-full">
<slot />
</div>
<div class="mt-8">
Expand Down
5 changes: 4 additions & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/* ... */
}
.prose code {
@apply text-base overflow-auto;
@apply overflow-auto;
}
h1,
h2,
Expand Down Expand Up @@ -41,6 +41,9 @@
img {
@apply rounded-md w-full md:w-full lg:w-3/4;
}
article img {
@apply hover:w-full transition-all;
}
th {
@apply bg-zinc-100 bg-zinc-200 dark:bg-zinc-300;
}
Expand Down
9 changes: 6 additions & 3 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ module.exports = {
typography: (theme) => ({
DEFAULT: {
css: {
p: {
'font-size': '1.0em',
'line-height': '1.675',
},
a: {
'text-decoration': 'none',
'background-repeat': 'no-repeat',
Expand Down Expand Up @@ -35,8 +39,8 @@ module.exports = {
color: 'rgb(var(--color-code-text))',
padding: '0.1rem 0.1rem',
'border-radius': '0.25rem',
'font-size': '0.875rem',
'line-height': '1.5',
'font-size': '1.0em',
'line-height': '1.2',
'font-family': "Consolas, Menlo, 'Andale Mono', 'Ubuntu Mono', monospace",
},
'ol > li::before': {
Expand All @@ -46,7 +50,6 @@ module.exports = {
'margin-bottom': '0.5rem',
color: 'rgb(var(--color-text-heading))',
'font-size': '1.0em',
'line-height': '1.75',
},
'code::before': {
content: 'none',
Expand Down

0 comments on commit 743acb4

Please sign in to comment.