conversation-replay 0.1.10 → 0.1.11
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 +6 -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.
|
|
7273
|
+
version: "0.1.11",
|
|
7274
7274
|
description: "Create annotated replays of text conversations",
|
|
7275
7275
|
main: "dist/cli.js",
|
|
7276
7276
|
type: "module",
|
|
@@ -7480,8 +7480,10 @@ 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
|
+
max-width: 100%; /* Ensure it doesn't overflow parent */
|
|
7485
7487
|
/* Hide scrollbars */
|
|
7486
7488
|
scrollbar-width: none;
|
|
7487
7489
|
-ms-overflow-style: none;
|
|
@@ -7866,9 +7868,11 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
7866
7868
|
.play-overlay-icon {
|
|
7867
7869
|
width: 64px; /* Slightly smaller for elegance */
|
|
7868
7870
|
height: 64px;
|
|
7869
|
-
flex
|
|
7871
|
+
flex: 0 0 auto; /* Prevent squishing on small screens */
|
|
7870
7872
|
min-width: 64px;
|
|
7871
7873
|
min-height: 64px;
|
|
7874
|
+
aspect-ratio: 1/1; /* Enforce square aspect ratio */
|
|
7875
|
+
margin: auto; /* Center in flex container if needed */
|
|
7872
7876
|
background: white;
|
|
7873
7877
|
border-radius: 50%;
|
|
7874
7878
|
display: flex;
|