astro-tractstack 2.0.0-rc.58 → 2.0.0-rc.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-tractstack",
3
- "version": "2.0.0-rc.58",
3
+ "version": "2.0.0-rc.59",
4
4
  "description": "Astro integration for TractStack - redeeming the web from boring experiences",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -351,7 +351,10 @@ const ArtpackImage = ({ paneId, onUpdate }: ArtpackImageProps) => {
351
351
  className="fixed inset-0 flex items-center justify-center p-4"
352
352
  style={{ zIndex: 10010 }}
353
353
  >
354
- <Dialog.Content className="dialog-content">
354
+ <Dialog.Content
355
+ className="dialog-content overflow-y-auto"
356
+ style={{ maxHeight: '80vh' }}
357
+ >
355
358
  <Dialog.Title className="mb-4 text-lg font-bold">
356
359
  Select Artpack Image
357
360
  </Dialog.Title>
@@ -170,7 +170,7 @@ for (const [key, value] of Astro.url.searchParams) {
170
170
  <!-- Main Content Area -->
171
171
  <main
172
172
  id="mainContent"
173
- class="relative flex-1"
173
+ class="relative flex-1 overflow-x-auto"
174
174
  style={{
175
175
  paddingBottom: 'var(--bottom-right-controls-bottom-offset, 16px)',
176
176
  }}
@@ -161,7 +161,7 @@ for (const [key, value] of Astro.url.searchParams) {
161
161
  <!-- Main Content Area -->
162
162
  <main
163
163
  id="mainContent"
164
- class="relative flex-1"
164
+ class="relative flex-1 overflow-x-auto"
165
165
  style={{
166
166
  paddingBottom: 'var(--bottom-right-controls-bottom-offset, 16px)',
167
167
  }}