Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ website:
repo-url: https://github.com/posit-dev/pointblank
description: "Find out if your data is what you think it is"
navbar:
logo: assets/pointblank_logo.svg
logo: assets/pointblank_logo_small.svg
title: false
left:
- text: Examples
Expand Down
12 changes: 12 additions & 0 deletions docs/assets/pointblank_logo_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ html-table-processing: none

<div style="text-align: center;">

![](assets/pointblank_logo.svg){width=60%}
![](assets/pointblank_logo.svg){width=85%}

**Data validation made beautiful and powerful.**

Expand Down
14 changes: 12 additions & 2 deletions docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@
text-decoration-thickness: 2px;
}

/* Make navbar logo bigger */
.navbar-brand img {
max-height: 45px;
padding-right: 15px;
padding-right: 0px;
margin-left: 5px;
margin-right: 12px;
border-style: solid;
border-width: 2px;
border-radius: 5px;
border-color: darkgray;
transition: transform 0.3s ease;
}

.navbar-brand img:hover {
transform: scale(1.15);
}

body {
Expand Down
Loading