-
Notifications
You must be signed in to change notification settings - Fork 0
Main → Prod #34
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
Main → Prod #34
Changes from all commits
78773de
cf41e41
9b56504
6420e72
dbe6d1e
3512a6b
95c3127
f28bbfb
b366200
351d571
4e72e7a
ebbcbe2
e2991ce
8f797b4
a05a871
5e618ad
c8a6641
38ea59d
0733b2e
23e2b96
9c218b2
44a2d55
f9ab419
707a3c8
c10c344
818e04d
33362ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -23,16 +23,16 @@ const Tag = href ? 'a' : 'button'; | |||||
| class:list={['btn', `btn-${variant}`, className]} | ||||||
| > | ||||||
| {icon && iconPosition === 'left' && ( | ||||||
| <iconify-icon icon={icon} class="mr-1.5" width="14" height="14" /> | ||||||
| <iconify-icon icon={icon} class="mr-2" width="18" height="18" /> | ||||||
| )} | ||||||
| <slot /> | ||||||
| {icon && iconPosition === 'right' && ( | ||||||
| <iconify-icon icon={icon} class="ml-1.5" width="14" height="14" /> | ||||||
| <iconify-icon icon={icon} class="ml-2" width="18" height="18" /> | ||||||
| )} | ||||||
| </Tag> | ||||||
|
|
||||||
| <style> | ||||||
| .btn :global(p) { | ||||||
| <style is:global> | ||||||
| .btn :is(p) { | ||||||
|
||||||
| .btn :is(p) { | |
| .btn p { |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,3 @@ const { prev, next } = Astro.props; | |
| <div></div> | ||
| )} | ||
| </nav> | ||
|
|
||
| <script> | ||
| import 'iconify-icon'; | ||
| </script> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
wrap: trueconfiguration has been removed from the Shiki syntax highlighting config. This means code blocks will no longer wrap long lines and will show horizontal scrollbars instead. This is a significant UX change that affects code readability, especially on mobile devices.If this change is intentional to improve code formatting, consider:
If unintentional, consider restoring the
wrap: truesetting.