Skip to content

ui: fix problem tag item color in dark mode#1091

Closed
035966-L3 wants to merge 10 commits into
hydro-dev:masterfrom
035966-L3:patch-2
Closed

ui: fix problem tag item color in dark mode#1091
035966-L3 wants to merge 10 commits into
hydro-dev:masterfrom
035966-L3:patch-2

Conversation

@035966-L3

@035966-L3 035966-L3 commented Nov 16, 2025

Copy link
Copy Markdown

Summary by CodeRabbit

  • Style
    • Enhanced dark theme for higher contrast and visual consistency across tags, buttons, cards, inputs, switches, tabs, segmented controls, and search/sort elements.
  • Bug Fixes / UI
    • Editor area now fills its container more reliably.
    • Scrolling behavior in the editor pane changed to prevent inner scrollbars; content may be clipped when exceeding the visible area.

@coderabbitai

coderabbitai Bot commented Nov 16, 2025

Copy link
Copy Markdown

Walkthrough

Added extensive dark-theme styling in packages/ui-default/theme/dark.styl: numerous selectors (including .section__tab-header-item, .problem__tag-item, .search-sort and many Mantine component classes such as .mantine-Button-label, .mantine-Tabs-, .mantine-Card-root, .mantine-TextInput-, .mantine-Switch-, .mantine-SegmentedControl-) receive updated color, background-color, border-color and pseudo-element rules (some using !important). In packages/ui-default/components/editor/index.tsx, the temporary Monaco editor container now sets both width and height to 100% (previously only width). In packages/ui-default/components/problemconfig/index.tsx, an Allotment pane container changed overflow from auto to hidden. No exported/public API signatures were modified.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

  • Changes span a stylesheet and two component files with different concerns (styling vs DOM/container sizing/overflow).
  • Heterogeneous edits: many repetitive style overrides plus small but behaviorally relevant layout adjustments.

Spot-check areas:

  • packages/ui-default/theme/dark.styl: use of !important, selector specificity, pseudo-elements (::before), focus/hover states, and overall visual/accessibility contrast.
  • packages/ui-default/components/editor/index.tsx: ensure setting height: 100% on the temporary container does not affect layout or editor initialization sizing assumptions.
  • packages/ui-default/components/problemconfig/index.tsx: verify changing overflow from auto to hidden does not hide necessary scrollbars or clip content unexpectedly.

Pre-merge checks and finishing touches

❌ Failed checks (1 warning, 1 inconclusive)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
Title check ❓ Inconclusive The title specifically mentions 'problem tag item color in dark mode,' but the changeset includes extensive dark-theme styling for many Mantine components (buttons, tabs, cards, inputs, switches, etc.) well beyond just the problem tag item. Consider revising the title to better reflect the comprehensive scope of dark-theme updates, such as 'ui: enhance dark mode styling for multiple components' or specify if the problem tag item fix is the primary objective.
✅ Passed checks (1 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 597bc34 and 02d0e45.

📒 Files selected for processing (2)
  • packages/ui-default/components/editor/index.tsx (1 hunks)
  • packages/ui-default/components/problemconfig/index.tsx (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
📓 Common learnings
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: build
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
packages/ui-default/components/editor/index.tsx (1)

54-54: LGTM - Improved container sizing.

Setting both width and height to 100% ensures the editor container properly fills its parent element. The conditional override on line 55 still applies when needed for non-auto-resize scenarios.

Note: This layout improvement appears unrelated to the PR objective about fixing dark mode tag colors, but it's a beneficial change nonetheless.

packages/ui-default/components/problemconfig/index.tsx (1)

53-53: Review comment is incorrect.

The Monaco editor manages scrolling internally through the Editor class, which has built-in logic to enable scrollbars when content exceeds viewport constraints. Specifically:

  • The Editor class enables scrollbars (vertical: 'auto', horizontal: 'auto') when content height exceeds 1.5× window height
  • The Editor has autoResize and autoLayout enabled by default, which auto-adjust dimensions and trigger Monaco's layout() method
  • The parent component calls editor.layout() on state changes and window resize, ensuring proper recalculation

The overflow: 'hidden' style on the parent container is intentional and correct—it prevents dual scrolling since the Monaco editor provides its own internal scroll management. All content remains accessible through Monaco's built-in scrolling mechanism.

Likely an incorrect or invalid review comment.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/ui-default/theme/dark.styl (1)

282-283: Consider extracting color to a variable for consistency.

The new .problem__tag-item rule adds styling for tag items in dark mode. The color choice (#d8dee3) is appropriate for dark backgrounds, but it's defined as a hardcoded hex value. The stylesheet defines colors as variables at the top (e.g., $content-color, $content-second-color), so consider whether this color warrants a variable definition to maintain consistency and improve maintainability.

Also, verify whether a corresponding rule is needed in the light theme stylesheet for .problem__tag-item.

If this color is intended to be reused, consider extracting it as a variable at the top of the file:

 $content-color = #eee
 $content-second-color = #bdbdbd
+$tag-item-color = #d8dee3

 $accent-color = #55b6e2

Then use it in the rule:

  .problem__tag-item
-   color: #d8dee3
+   color: $tag-item-color

To verify this fix, check if:

  1. A corresponding .problem__tag-item rule exists in the light theme stylesheet
  2. This color value aligns with the visual appearance expected from the PR title ("fix problem tag item color in dark mode")
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7f7bff9 and 3eac595.

📒 Files selected for processing (1)
  • packages/ui-default/theme/dark.styl (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Analyze (javascript)
  • GitHub Check: build

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
packages/ui-default/theme/dark.styl (1)

289-320: Excessive reliance on !important; consider using CSS specificity instead.

The new Mantine component rules heavily depend on !important flags to enforce styles. While some existing rules use !important, consider whether CSS selector specificity can achieve the same effect without it. This reduces maintenance burden and aligns with CSS best practices.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6024b0d and ee97ab2.

📒 Files selected for processing (1)
  • packages/ui-default/theme/dark.styl (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: build
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (2)
packages/ui-default/theme/dark.styl (2)

282-283: LGTM: Problem tag item color fix.

The color value (#d8dee3) provides good contrast for the dark theme. This directly addresses the PR objective.


285-287: LGTM: Search sort styling.

Colors are consistent with the existing dark theme palette. No issues detected.

Comment thread packages/ui-default/theme/dark.styl Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f30819f and 1afdf7f.

📒 Files selected for processing (1)
  • packages/ui-default/theme/dark.styl (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Analyze (javascript)
  • GitHub Check: build
🔇 Additional comments (2)
packages/ui-default/theme/dark.styl (2)

292-293: Syntax error has been corrected.

The invalid CSS declaration with two colons on line 293 has been fixed. The rule now correctly reads border: 0.7px solid #6e7276!important.


282-323: Review color choices for visibility and contrast in dark mode.

Several rules use very dark colors (#000, #222, #565e66) for backgrounds and borders. While this is consistent with a dark theme, verify that these choices don't create unintended visibility issues:

  • Line 299–302: .mantine-Card-root sets both background-color: #000 and border-color: #000, which could make borders invisible.
  • Line 304–305: .mantine-TextInput-input sets border-color: #000, which may be hard to distinguish against the input background.
  • Line 307–308: .mantine-Switch-thumb sets background-color: #000, which should be tested to ensure it remains visible and interactive.

Confirm that these styles provide adequate contrast and visual distinction in practice, or adjust colors if needed.

Comment on lines +282 to +323
.problem__tag-item
color: #d8dee3

.search-sort
color: #eee!important
background-color: #1f1f1f

.mantine-Button-label
color: #eee

.mantine-Tabs-list::before
border: 0.7px solid #6e7276

.mantine-Tabs-tab:hover
background-color: #000
border-color: #4e4e4e

.mantine-Card-root
color: #fff
background-color: #000
border-color: #000

.mantine-TextInput-input
border-color: #000

.mantine-Switch-thumb
background-color: #000

.mantine-SegmentedControl-root
background-color: #222

.mantine-SegmentedControl-indicator
background-color: #000

.mantine-Switch-input:not(:checked)+.mantine-Switch-track
background-color: #565e66

.mantine-Switch-input:not(:checked)+.mantine-Switch-track .mantine-Switch-thumb:where([data-with-thumb-indicator]):before
background-color: #565e66

.mantine-SegmentedControl-root[data-with-items-borders] :not(:first-of-type):where(.mantine-SegmentedControl-control):before
background-color: #777

@coderabbitai coderabbitai Bot Nov 16, 2025

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

Verify that the Mantine version constraint addressing has been applied.

The past review flagged that these CSS rules target Mantine's internal class names, which are fragile across major version upgrades. It was noted as "✅ Addressed in commit f30819f," but verify that the recommended mitigation has been applied:

  1. Check if the Mantine version in packages/ui-default/package.json has been pinned to the major version (e.g., changed from ^8.3.7 to ~8.3.7 or an exact version like 8.3.7).
  2. If pinned, confirm that a code comment documents why the dependency is pinned and that internal Mantine selectors are being targeted.
  3. If not yet pinned, consider pinning the major version to avoid breaking changes in future Mantine upgrades, or refactor to use Mantine's Styles API / classNames prop for better stability.

🏁 Script executed:

#!/bin/bash
# Verify Mantine version constraint in packages/ui-default/package.json
cat packages/ui-default/package.json | grep -A1 '"@mantine'

Length of output: 137


</parameter>
</invoke>

---

🏁 Script executed:

```shell
#!/bin/bash
# Check for comments in dark.styl file around the Mantine CSS rules
sed -n '270,330p' packages/ui-default/theme/dark.styl | head -70

Length of output: 78



---

🏁 Script executed:

```shell
#!/bin/bash
# Find dark.styl file in repository
fd -t f "dark\.styl" .

Length of output: 37



---

🏁 Script executed:

```shell
#!/bin/bash
# Check dark.styl lines 270-330 for comments around the Mantine CSS rules
sed -n '270,330p' ./packages/ui-default/theme/dark.styl

Length of output: 1409


Mantine version constraint not pinned; recommended mitigations not applied.

Verification confirms the Mantine packages in packages/ui-default/package.json remain unpinned at ^8.3.7, and no code comments document why internal Mantine selectors are being targeted in dark.styl (lines 282-323). The recommended mitigations have not been applied:

  1. Pin the Mantine major version (change ^8.3.7 to ~8.3.7 or 8.3.7) in packages/ui-default/package.json
  2. Add a code comment explaining why internal Mantine class selectors are necessary and document the dependency pinning requirement
  3. Alternatively, refactor to use Mantine's Styles API or classNames prop for better forward compatibility
🤖 Prompt for AI Agents
In packages/ui-default/theme/dark.styl around lines 282-323, internal Mantine
selectors are being targeted without any explanatory comment and the Mantine
dependency in packages/ui-default/package.json is unpinned (^8.3.7); update
packages/ui-default/package.json to pin the Mantine major version (change ^8.3.7
to ~8.3.7 or 8.3.7), and add a brief code comment above these selectors in
dark.styl explaining why the internal class selectors are required, noting the
fragility and that the dependency must be pinned to the specified Mantine
version; optionally mention (in the comment) the preferred long-term fix of
migrating these overrides to Mantine’s Styles API or classNames prop for forward
compatibility.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here Mantine kept its light scheme in dark mode. That's why I do this.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@035966-L3, thank you for the clarification! That makes sense—if Mantine components aren't respecting the dark theme out of the box, these overrides are a necessary workaround.

Since you're targeting internal Mantine class names as a fix for their light scheme issue, you might still want to consider (as optional best practices):

  1. Pin the Mantine version in packages/ui-default/package.json (change ^8.3.7 to ~8.3.7 or exact 8.3.7) to avoid potential breakage if Mantine changes these class names in a future release
  2. Add a brief comment above these rules in dark.styl explaining that these overrides are needed because Mantine doesn't properly support dark mode in this context

But I understand the constraint you're working with, and the approach makes sense given the limitation.


✏️ Learnings added
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.

Note: Learnings are effective only in the context of similar code segments. To apply general coding guidelines, please configure review instructions. You can manage existing learnings in the app.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/ui-default/theme/dark.styl (1)

289-324: Mantine component overrides are syntactically correct.

All CSS rules targeting Mantine internal classes (lines 289–324) are syntactically valid. Color values, pseudo-selectors (:not(), :where(), :checked, etc.), and pseudo-elements (::before) are all properly formatted. The syntax error flagged in the previous review (line 293) has been corrected.

These overrides address the limitation where Mantine components don't respect the dark theme, as noted in the learnings. However, per past review discussions, consider adding a brief inline comment explaining why internal Mantine selectors are being targeted—this would help future maintainers understand the constraint and the reason these overrides exist.

Example comment to add above line 282:

// Note: Mantine components do not properly respect dark theme in this context.
// Direct overrides of internal .mantine-* class selectors are necessary.
// These overrides should be revisited if upgrading Mantine versions.
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1afdf7f and 57692d6.

📒 Files selected for processing (1)
  • packages/ui-default/theme/dark.styl (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.
📚 Learning: 2025-11-16T16:11:12.970Z
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.

Applied to files:

  • packages/ui-default/theme/dark.styl
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: build
  • GitHub Check: Analyze (javascript)
🔇 Additional comments (1)
packages/ui-default/theme/dark.styl (1)

282-287: ✅ Problem tag item color fix looks good.

The .problem__tag-item styling (lines 282-283) directly addresses the PR objective by providing an appropriate dark-mode color (#d8dee3). The .search-sort rule (lines 285-287) also provides proper contrast and visibility in dark mode.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
packages/ui-default/theme/dark.styl (1)

311-318: Inconsistent color scheme for Mantine switch and segmented control components.

Line 312 uses #000 for .mantine-Switch-thumb and line 318 uses #000 for .mantine-SegmentedControl-indicator, both of which are inconsistent with the #222, #565e66, and #777 colors used in nearby rules (lines 315, 321, 327). Consider using colors that better match the existing palette (e.g., #222, #4e4e4e, or #565e66) for visual consistency.

  .mantine-Switch-thumb
-   background-color: #000
+   background-color: #222
  
  .mantine-SegmentedControl-indicator
-   background-color: #000
+   background-color: #565e66
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 57692d6 and 870c029.

📒 Files selected for processing (1)
  • packages/ui-default/theme/dark.styl (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.
📚 Learning: 2025-11-16T16:11:12.970Z
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.

Applied to files:

  • packages/ui-default/theme/dark.styl
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Analyze (javascript)
  • GitHub Check: build

Comment on lines +302 to +309
.mantine-Card-root
color: #fff
background-color: #000
border-color: #000

.mantine-TextInput-input
border-color: #000
color: #fff

@coderabbitai coderabbitai Bot Nov 17, 2025

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Critical visibility issue: Card and input styling with matching background and border colors.

Lines 304-305 set both background-color: #000 and border-color: #000 for .mantine-Card-root, making the card and its border invisible. Similarly, line 308 sets border-color: #000 for .mantine-TextInput-input, which will be nearly invisible against the #1f1f1f input background.

These should use visible colors that match the existing theme, such as $main-background-color (#121212) or $second-background-color (#323334).

  .mantine-Card-root
    color: #fff
-   background-color: #000
-   border-color: #000
+   background-color: #121212
+   border-color: #323334
  
  .mantine-TextInput-input
-   border-color: #000
+   border-color: #323334
    color: #fff
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
.mantine-Card-root
color: #fff
background-color: #000
border-color: #000
.mantine-TextInput-input
border-color: #000
color: #fff
.mantine-Card-root
color: #fff
background-color: #121212
border-color: #323334
.mantine-TextInput-input
border-color: #323334
color: #fff
🤖 Prompt for AI Agents
In packages/ui-default/theme/dark.styl around lines 302 to 309, the
.mantine-Card-root and .mantine-TextInput-input use border-color and
background-color values that match too closely (#000), making borders and inputs
visually indistinguishable; update .mantine-Card-root to use a visible
background and border (e.g., background-color: $main-background-color (#121212)
and border-color: $second-background-color (#323334) or vice versa for
contrast), and update .mantine-TextInput-input border-color to a contrasting
theme color such as $second-background-color (#323334) or a slightly
lighter/darker variant so the input border is readable against the #1f1f1f input
background.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I've tried it in practice and I confirm I'm right.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@035966-L3, understood! Thank you for confirming that you've tested the styling in practice. I appreciate you taking the time to verify the color choices work correctly in the actual UI. I'll defer to your testing results.


🧠 Learnings used
Learnt from: 035966-L3
Repo: hydro-dev/Hydro PR: 1091
File: packages/ui-default/theme/dark.styl:282-323
Timestamp: 2025-11-16T16:11:12.970Z
Learning: In the Hydro project, Mantine components don't properly respect the dark theme and keep their light scheme in dark mode. Therefore, direct overrides of internal Mantine class selectors in `packages/ui-default/theme/dark.styl` are necessary workarounds for this limitation.

@035966-L3

Copy link
Copy Markdown
Author

The two commits from patch-4 fixes the problem config editor, which incorrectly consists of two scroll bars (One from Monaco itself, the other with overflow: auto), and Monaco's bar overflew.

@pandadtdyy

Copy link
Copy Markdown
Member

Wrong fix. Do not use AI send Pull Request. We will block you next time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants