Skip to content

fix: mobile fixes and basic i18n support #127

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

Merged
merged 24 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
61612c1
fix: height on mobile
Nemikolh Jul 10, 2024
98ecac3
fix: auto focus of editor on mobile, simplify next button on mobile
Nemikolh Jul 10, 2024
0d31cd9
fix(nav): remove arrows and adjust padding
Nemikolh Jul 10, 2024
c14b390
fix: remove unused classes
Nemikolh Jul 10, 2024
3709489
feat: add transition between dark/light modes
Nemikolh Jul 10, 2024
03e58d5
fix: update snapshot
Nemikolh Jul 10, 2024
d4955dd
feat: add start webcontainer button when boot is prevented
Nemikolh Jul 10, 2024
40b1495
fix: weird transition when theme is changed
Nemikolh Jul 10, 2024
d34be9d
Merge remote-tracking branch 'origin/main' into joan/mobile-fixes
Nemikolh Jul 11, 2024
af39ca0
fix: issues with inheritance and more work on i18n
Nemikolh Jul 11, 2024
6d2e9e3
fix: update theme.css to latest
Nemikolh Jul 11, 2024
0065c56
fix: snapshot
Nemikolh Jul 11, 2024
43e8a27
fix: use the variables.css as theme.css to avoid copies
Nemikolh Jul 11, 2024
591fbab
chore: document the new properties
Nemikolh Jul 11, 2024
5436a09
Apply suggestions from code review
Nemikolh Jul 11, 2024
2b4b645
fix: code review
Nemikolh Jul 11, 2024
3ede641
fix: revert change on buttons for bottom navigation
Nemikolh Jul 11, 2024
ada7404
fix: feedback for the run this tutorial button
Nemikolh Jul 11, 2024
ff7225e
Update docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx
Nemikolh Jul 11, 2024
aa1d32b
feat: add a page loading indicator
Nemikolh Jul 11, 2024
516e775
fix: update snapshot
Nemikolh Jul 11, 2024
1589fb2
fix: do not make the progress visible under 500ms
Nemikolh Jul 11, 2024
e57af6c
Apply suggestions from code review
Nemikolh Jul 11, 2024
f9dd9b4
fix: patch issues
Nemikolh Jul 11, 2024
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
307 changes: 0 additions & 307 deletions docs/demo/theme.ts

This file was deleted.

1 change: 1 addition & 0 deletions docs/tutorialkit.dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"@astrojs/react": "^3.6.0",
"@astrojs/starlight": "^0.23.4",
"@iconify-json/ph": "^1.1.13",
"@tutorialkit/astro": "workspace:*",
"@tutorialkit/theme": "workspace:*",
"@types/gtag.js": "^0.0.20",
"@types/react": "^18.3.3",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { classNames } from '@tutorialkit/components-react';
import './theme.css';
import '@tutorialkit/astro/default-theme.css';

interface Props {
className?: string;
Expand Down
Loading