File tree Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -87,16 +87,6 @@ BookmarksStrip.style = css`
8787 gap : 0.5em ;
8888 background : var (--toolbar );
8989 color : var (--toolbar_text );
90- --toolbarbutton-hover-background : color-mix (
91- in srgb,
92- currentColor 17% ,
93- transparent
94- );
95- --toolbarbutton-active-background : color-mix (
96- in srgb,
97- currentColor 30% ,
98- transparent
99- );
10090 }
10191
10292 button {
Original file line number Diff line number Diff line change @@ -65,6 +65,11 @@ export function SettingsPage(
6565 />
6666 </ div >
6767 < div class = "settings-content" >
68+ < h1 >
69+ { use ( this . selected ) . map (
70+ ( s ) => s . charAt ( 0 ) . toUpperCase ( ) + s . slice ( 1 )
71+ ) }
72+ </ h1 >
6873 { /* General Tab */ }
6974 { use ( this . selected ) . map ( ( selected ) =>
7075 selected === "general" ? (
@@ -390,7 +395,6 @@ export function SettingsPage(
390395 { use ( this . selected ) . map ( ( selected ) =>
391396 selected === "about" ? (
392397 < div class = "settings-tab" >
393- < h3 > About</ h3 >
394398 < section class = "setting-section" >
395399 < div class = "section-header" > </ div >
396400 < div class = "section-content" >
@@ -547,8 +551,7 @@ SettingsPage.style = css`
547551 }
548552
549553 .search-container {
550- padding : 1.5rem 2rem ;
551- border-bottom : 1px solid var (--ntp-text-15 );
554+ padding : 1rem 1rem ;
552555 }
553556
554557 input {
@@ -615,6 +618,10 @@ SettingsPage.style = css`
615618 padding : 1.5rem 2rem 2rem ;
616619 overflow-y : auto;
617620 }
621+ .settings-content h1 {
622+ margin-bottom : 1.5rem ;
623+ font-size : 1.75rem ;
624+ }
618625
619626 .settings-tab {
620627 max-width : 50rem ;
You can’t perform that action at this time.
0 commit comments