conversation-replay 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. package/dist/cli.js +5 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -7270,7 +7270,7 @@ import { writeFile } from "node:fs/promises";
7270
7270
  // package.json
7271
7271
  var package_default = {
7272
7272
  name: "conversation-replay",
7273
- version: "0.1.11",
7273
+ version: "0.1.12",
7274
7274
  description: "Create annotated replays of text conversations",
7275
7275
  main: "dist/cli.js",
7276
7276
  type: "module",
@@ -7483,6 +7483,7 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
7483
7483
  overflow-y: hidden; /* Prevent vertical movement */
7484
7484
  -webkit-overflow-scrolling: touch;
7485
7485
  padding-bottom: 0;
7486
+ margin-left: 0; /* Reset margin on mobile to prevent overflow */
7486
7487
  max-width: 100%; /* Ensure it doesn't overflow parent */
7487
7488
  /* Hide scrollbars */
7488
7489
  scrollbar-width: none;
@@ -8433,8 +8434,9 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
8433
8434
 
8434
8435
  .control-btn.primary {
8435
8436
  order: -1;
8436
- flex: 1 1 100%;
8437
- justify-content: center;
8437
+ flex: 0 0 auto;
8438
+ width: 44px;
8439
+ height: 44px;
8438
8440
  margin-bottom: 4px;
8439
8441
  }
8440
8442
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conversation-replay",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Create annotated replays of text conversations",
5
5
  "main": "dist/cli.js",
6
6
  "type": "module",