Skip to content

Commit ea20a6a

Browse files
ssbarneaBeyondEvil
authored andcommitted
Fix min-width which produced horizontal scrolls (#237)
Previous min-width caused undesired horizontal scrolls even on a 5K display with 1/2 split screen. Reduced value allows users to better use their screens.
1 parent 2c78ca7 commit ea20a6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pytest_html/resources/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
body {
22
font-family: Helvetica, Arial, sans-serif;
33
font-size: 12px;
4-
min-width: 1200px;
4+
/* do not increase min-width as some may use split screens */
5+
min-width: 800px;
56
color: #999;
67
}
78

0 commit comments

Comments
 (0)