Skip to content

Commit 809f60d

Browse files
committed
fix: Add max widths to debug page message states
1 parent f1b0e55 commit 809f60d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

cli/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ _Released 02/14/2023 (PENDING)_
1010
**Misc:**
1111

1212
- Improved the layout of the Debug Page on smaller viewports when there is a pending run. Addresses [#25664](https://github.com/cypress-io/cypress/issues/25664).
13+
- Improved the layout of the Debug Page when displaying informational messages. Addresses [#25669](https://github.com/cypress-io/cypress/issues/25669).
1314
- Icons in Debug page will no longer shrink at small viewports. Addresses [#25665](https://github.com/cypress-io/cypress/issues/25665).
1415

1516
## 12.5.1

packages/app/src/debug/DebugOverLimit.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
class="flex flex-col items-center"
3+
class="flex flex-col max-w-440px items-center"
44
>
55
<LockedProject :class="iconClasses" />
66
<span class="font-medium mt-24px text-gray-900">

packages/app/src/debug/empty/DebugEmptyView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="flex flex-col my-45px items-center">
2+
<div class="flex flex-col mx-auto my-45px max-w-640px items-center">
33
<div class="flex flex-col items-center justify-evenly">
44
<div><i-cy-box-open_x48 class="icon-dark-gray-500 icon-light-indigo-100" /></div>
55
<div class="flex flex-col mx-[20%] mt-25px mb-20px items-center">

0 commit comments

Comments
 (0)