Skip to content

Commit e9d00b2

Browse files
committed
fixed a text wrapping in radio boxes
1 parent 413e04c commit e9d00b2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test2text/pages/reports/report_by_req.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ def write_annotations(current_annotations: set[tuple]):
229229
"""
230230
<style>
231231
.stRadio > div {
232-
max-width: 350px;
232+
max-width: 100%;
233233
word-break: break-word;
234-
white-space: pre-line;
234+
white-space: normal;
235235
}
236236
</style>
237237
""",

test2text/pages/reports/report_by_tc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ def write_requirements(current_requirements: set[tuple]):
249249
"""
250250
<style>
251251
.stRadio > div {
252-
max-width: 350px;
252+
max-width: 100%;
253253
word-break: break-word;
254-
white-space: pre-line;
254+
white-space: normal;
255255
}
256256
</style>
257257
""",

0 commit comments

Comments
 (0)