|
|
@@ -1326,7 +1326,7 @@ const runTest = async () => {
|
|
|
padding: 16px 20px 24px;
|
|
|
background: #F7F9FC;
|
|
|
min-width: 0;
|
|
|
- overflow-x: hidden;
|
|
|
+ overflow-x: clip;
|
|
|
}
|
|
|
|
|
|
.otp-breadcrumb {
|
|
|
@@ -1374,6 +1374,11 @@ const runTest = async () => {
|
|
|
.otp-side {
|
|
|
flex: 1 1 0;
|
|
|
min-width: 0;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ position: sticky;
|
|
|
+ top: 16px;
|
|
|
+ max-height: calc(100vh - 32px);
|
|
|
overflow: hidden;
|
|
|
box-sizing: border-box;
|
|
|
padding: 16px;
|
|
|
@@ -1399,6 +1404,8 @@ const runTest = async () => {
|
|
|
flex-direction: column;
|
|
|
gap: 10px;
|
|
|
margin-top: 14px;
|
|
|
+ min-height: 0;
|
|
|
+ overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.otp-side-item {
|
|
|
@@ -2396,6 +2403,9 @@ const runTest = async () => {
|
|
|
.otp-result {
|
|
|
flex: 1.5 1.5 0;
|
|
|
min-width: 0;
|
|
|
+ position: sticky;
|
|
|
+ top: 16px;
|
|
|
+ max-height: calc(100vh - 32px);
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
@@ -2692,6 +2702,8 @@ const runTest = async () => {
|
|
|
}
|
|
|
|
|
|
.otp-side {
|
|
|
+ top: 12px;
|
|
|
+ max-height: calc(100vh - 32px);
|
|
|
padding: 12px;
|
|
|
}
|
|
|
|
|
|
@@ -2774,6 +2786,11 @@ const runTest = async () => {
|
|
|
font-size: 13px;
|
|
|
}
|
|
|
|
|
|
+ .otp-result {
|
|
|
+ top: 12px;
|
|
|
+ max-height: calc(100vh - 32px);
|
|
|
+ }
|
|
|
+
|
|
|
.otp-result-card {
|
|
|
min-height: 480px;
|
|
|
padding: 12px;
|
|
|
@@ -2797,6 +2814,13 @@ const runTest = async () => {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
+ .otp-side,
|
|
|
+ .otp-result {
|
|
|
+ position: static;
|
|
|
+ top: auto;
|
|
|
+ max-height: none;
|
|
|
+ }
|
|
|
+
|
|
|
.otp-result-card {
|
|
|
min-height: 360px;
|
|
|
}
|