Skip to content

Commit

Permalink
docs: fix video width in mobile for codestral (#2608)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys authored Jul 10, 2024
1 parent 09afb60 commit 119953a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions website/blog/2024-07-09-tabby-codestral/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ We are excited to share the integration of ***Codestral*** model into Tabby!
Codestral has demonstrated exceptional performance across various coding tasks, and we are delighted to support our users in both self-hosting and accessing Codestral through its cloud API.
This addition aims to enhance your coding experience with precision and efficiency, setting a new standard for AI-enhanced developer experience.

<video autoplay muted controls width="620" height="400" src={CodestralVideoUrl} type="video/mp4"/>

<video autoplay muted controls src={CodestralVideoUrl} type="video/mp4" className='w-full md:w-[620px]'/>

## What's great about Codestral?

Expand Down
2 changes: 1 addition & 1 deletion website/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
corePlugins: {
preflight: false, // disable Tailwind's reset
},
content: ["./src/**/*.{js,jsx,ts,tsx}", "./docs/**/*.mdx"],
content: ["./src/**/*.{js,jsx,ts,tsx}", "./docs/**/*.mdx", "./blog/**/*.mdx"],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {},
Expand Down

0 comments on commit 119953a

Please sign in to comment.