Skip to content

Commit 38a771d

Browse files
committed
fix first line of code being indented
1 parent 1873189 commit 38a771d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/popup/popup.css

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,17 @@
3636

3737
/* Display size variations */
3838
.small-display {
39-
width: 400px;
39+
width: 500px;
40+
height: 600px;
4041
--base-font-size: 12px;
4142
--button-height: 40px;
4243
--button-width: 170px;
4344
--settings-width: 200px;
4445
}
4546

4647
.medium-display {
47-
width: 500px;
48+
width: 600px;
49+
height: 700px;
4850
--base-font-size: 14px;
4951
--button-height: 45px;
5052
--button-width: 190px;
@@ -54,7 +56,8 @@
5456
}
5557

5658
.large-display {
57-
width: 600px;
59+
width: 700px;
60+
height: 800px;
5861
--base-font-size: 16px;
5962
--button-height: 50px;
6063
--button-width: 210px;
@@ -197,7 +200,7 @@ a {
197200
border: 1px solid var(--border-color);
198201
padding: var(--spacing);
199202
margin-bottom: var(--spacing);
200-
max-height: 350px;
203+
max-height: 500px;
201204
overflow-y: auto;
202205
box-sizing: border-box;
203206
font-size: var(--base-font-size);
@@ -213,6 +216,13 @@ a {
213216
padding-top: 40px; /* Space for buttons */
214217
}
215218

219+
#fix-code-container code {
220+
padding-left: 0 !important; /* Remove left padding to fix indentation */
221+
text-indent: 0 !important; /* Ensure no text indentation */
222+
display: block;
223+
white-space: pre;
224+
}
225+
216226
/* Code action buttons */
217227
#fix-code-container .button-container {
218228
display: flex;

0 commit comments

Comments
 (0)