Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,15 @@ export const DEV_TOOLS_INFO_STYLES = `
margin: 0;
}

.dev-tools-info-section-title {
padding: 8px 0px;
color: var(--color-gray-1000);
font-size: var(--size-16);
font-weight: 600;
line-height: var(--size-20);
margin: 0;
}

.dev-tools-info-article {
padding: 8px 6px;
color: var(--color-gray-1000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export function UserPreferences({

return (
<DevToolsInfo title="Preferences" {...props}>
<h2 className="dev-tools-info-section-title">General</h2>
<div className="preferences-container">
<div className="preference-section">
<div className="preference-header">
Expand Down Expand Up @@ -180,7 +181,7 @@ export function UserPreferences({
</div>
</div>
</div>
<h1 className="dev-tools-info-title">Development Server</h1>
<h2 className="dev-tools-info-section-title">Development Server</h2>
<div className="preferences-container">
<div className="preference-section">
<div className="preference-header">
Expand Down
Loading