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

codeblock font size, convert video to webm #73

Merged
merged 1 commit into from
Jan 6, 2023
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
codeblock font size, convert video to webm
  • Loading branch information
carlosgauci committed Jan 6, 2023
commit 6383f4fb199c66005af76fa9dc6ab08d64190b78
5 changes: 2 additions & 3 deletions content/overview/demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ toc: false
aliases: [quick-demo]
---

<!-- ![image](https://raw.githubusercontent.com/deepset-ai/haystack-website/source/public/img/haystack-demo-short.gif) -->
<!-- use mp4 instead of gif to reduce file size -->
<!-- <video autoplay loop muted playsinline poster="/images/haystack-demo-poster.jpg" class="responsive"><source src="/images/haystack-demo-short.mp4" type="video/mp4"></video> -->

<video autoplay loop muted playsinline class="responsive"><source src="/images/haystack-demo-short.mp4" type="video/mp4"></video>
<video autoplay loop muted playsinline poster="/images/haystack-demo-poster.jpg" class="responsive"><source src="/images/haystack-demo-short.webm" type="video/webm"></video>

Try out our Explore The World live demo! Ask any question on countries or capital cities and let Haystack return the answers to you.

Expand Down
Binary file added static/images/haystack-demo-poster.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/haystack-demo-short.webm
Binary file not shown.
5 changes: 5 additions & 0 deletions themes/haystack/assets/sass/components/_article.scss
Original file line number Diff line number Diff line change
Expand Up @@ -357,3 +357,8 @@ blockquote {
margin-top: 0;
}
}

// Code blocks
code {
font-size: var(--text-base);
}