Skip to content

Commit 2b790bc

Browse files
fix: increase container size and resolve style issues
1 parent 5e47e9d commit 2b790bc

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

src/optimizer-page/CourseOptimizerPage.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,7 @@ const CourseOptimizerPage: FC<{ courseId: string }> = ({ courseId }) => {
196196
<Container size="xl" className="mt-4 px-4 export">
197197
<section className="setting-items mb-4">
198198
<Layout
199-
lg={[{ span: 9 }, { span: 3 }]}
200-
md={[{ span: 9 }, { span: 3 }]}
201-
sm={[{ span: 9 }, { span: 3 }]}
202-
xs={[{ span: 9 }, { span: 3 }]}
203-
xl={[{ span: 9 }, { span: 3 }]}
199+
lg={[{ span: 12 }, { span: 0 }]}
204200
>
205201
<Layout.Element>
206202
<article>

src/optimizer-page/scan-results/ScanResults.scss

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
td {
5858
padding: 16px 0;
5959
border-top: none !important;
60+
overflow: auto;
6061

6162
a {
6263
color: var(--info-500, #00688D);
@@ -118,12 +119,17 @@
118119

119120
.broken-link-container {
120121
max-width: calc(100% - 150px);
122+
}
123+
124+
.broken-link-container a {
125+
display: block;
121126
overflow: hidden;
122127
text-overflow: ellipsis;
123-
flex-grow: 1;
124-
word-break: break-all;
125-
overflow-wrap: anywhere;
126-
white-space: break-spaces;
128+
white-space: nowrap;
129+
}
130+
131+
.links-container > div:first-child {
132+
max-width: 95%;
127133
}
128134

129135
.locked-links-checkbox {

0 commit comments

Comments
 (0)