Skip to content

Commit

Permalink
Merge pull request #4421 from Franz-Kafka/main
Browse files Browse the repository at this point in the history
quick fix for headline issue
  • Loading branch information
szarnyasg authored Dec 20, 2024
2 parents 7f74e4e + 849a526 commit 5ba964d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions css/blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ h1, h2, h3, h4, h5{
margin-top: 60px;
font-weight: 500;
}
h2 + h3{
margin-top: 30px;
}
h3 + h4{
margin-top: 20px;
}
blockquote{
h4{
font-size: 16.5px;
Expand Down
8 changes: 4 additions & 4 deletions css/darkmode.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ html.disable-transitions * {
}

html.darkmode ::-moz-selection {
background: #353535;
background: var(--doc-codebox-border-color, #333);
}

html.darkmode ::selection {
background: #353535;
background: var(--doc-codebox-border-color, #333);
}

html.darkmode body{
::-moz-selection {
background: #353535;
background: var(--doc-codebox-border-color, #333);
}
::selection {
background: #353535;
background: var(--doc-codebox-border-color, #333);
}

#duckdb_logo,
Expand Down
2 changes: 1 addition & 1 deletion css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ header .headerline{
}
}
.banner{
border: 1px solid var(--menu-topmenu-searchbar-border-color, #E6E6E6);
border: 1px solid var(--menu-dropdown-border-color, #333);
border-radius: 10px;
background: transparent;
padding: 8px;
Expand Down

0 comments on commit 5ba964d

Please sign in to comment.