conversation-replay 0.1.10 → 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.
- package/dist/cli.js +10 -4
- 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.
|
|
7273
|
+
version: "0.1.12",
|
|
7274
7274
|
description: "Create annotated replays of text conversations",
|
|
7275
7275
|
main: "dist/cli.js",
|
|
7276
7276
|
type: "module",
|
|
@@ -7480,8 +7480,11 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
7480
7480
|
.tabs {
|
|
7481
7481
|
flex-wrap: nowrap;
|
|
7482
7482
|
overflow-x: auto;
|
|
7483
|
+
overflow-y: hidden; /* Prevent vertical movement */
|
|
7483
7484
|
-webkit-overflow-scrolling: touch;
|
|
7484
7485
|
padding-bottom: 0;
|
|
7486
|
+
margin-left: 0; /* Reset margin on mobile to prevent overflow */
|
|
7487
|
+
max-width: 100%; /* Ensure it doesn't overflow parent */
|
|
7485
7488
|
/* Hide scrollbars */
|
|
7486
7489
|
scrollbar-width: none;
|
|
7487
7490
|
-ms-overflow-style: none;
|
|
@@ -7866,9 +7869,11 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
7866
7869
|
.play-overlay-icon {
|
|
7867
7870
|
width: 64px; /* Slightly smaller for elegance */
|
|
7868
7871
|
height: 64px;
|
|
7869
|
-
flex
|
|
7872
|
+
flex: 0 0 auto; /* Prevent squishing on small screens */
|
|
7870
7873
|
min-width: 64px;
|
|
7871
7874
|
min-height: 64px;
|
|
7875
|
+
aspect-ratio: 1/1; /* Enforce square aspect ratio */
|
|
7876
|
+
margin: auto; /* Center in flex container if needed */
|
|
7872
7877
|
background: white;
|
|
7873
7878
|
border-radius: 50%;
|
|
7874
7879
|
display: flex;
|
|
@@ -8429,8 +8434,9 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
8429
8434
|
|
|
8430
8435
|
.control-btn.primary {
|
|
8431
8436
|
order: -1;
|
|
8432
|
-
flex:
|
|
8433
|
-
|
|
8437
|
+
flex: 0 0 auto;
|
|
8438
|
+
width: 44px;
|
|
8439
|
+
height: 44px;
|
|
8434
8440
|
margin-bottom: 4px;
|
|
8435
8441
|
}
|
|
8436
8442
|
}
|