File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export default function navbarTemplate() {
50
50
${ ( this . allowSearch === 'false' && this . allowAdvancedSearch === 'false' )
51
51
? ''
52
52
: html `
53
- < div style ="display:flex; flex-direction:row; justify-content:center; align-items:center ; padding:8px 24px 12px 24px; ${ this . allowAdvancedSearch === 'false' ? 'border-bottom: 1px solid var(--nav-hover-bg-color)' : '' } ">
53
+ < div style ="display:flex; flex-direction:row; justify-content:center; align-items:stretch ; padding:8px 24px 12px 24px; ${ this . allowAdvancedSearch === 'false' ? 'border-bottom: 1px solid var(--nav-hover-bg-color)' : '' } ">
54
54
${ this . allowSearch === 'false'
55
55
? ''
56
56
: html `
@@ -67,16 +67,18 @@ export default function navbarTemplate() {
67
67
</ div >
68
68
${ this . matchPaths
69
69
? html `
70
- < div @click = '${ this . onClearSearch } ' style ='margin-left:5px; cursor:pointer; align-self:center; color:var(--nav-text-color) ' class ='small-font-size primary-text bold-text '> CLEAR </ div > `
70
+ < button @click = '${ this . onClearSearch } ' class ="m-btn thin-border " style ="margin-left:5px; color:var(--nav-text-color); width:75px; padding:6px 8px; " part ="btn btn-outline btn-clear-filter ">
71
+ CLEAR
72
+ </ button > `
71
73
: ''
72
74
}
73
75
`
74
76
}
75
77
${ this . allowAdvancedSearch === 'false' || this . matchPaths
76
78
? ''
77
79
: html `
78
- < button class ="m-btn primary " part ="btn btn-fill btn-search " style ="margin-left:5px; " @click ="${ this . onShowSearchModalClicked } ">
79
- Search
80
+ < button class ="m-btn primary " part ="btn btn-fill btn-search " style ="margin-left:5px; padding:6px 8px; width:75px " @click ="${ this . onShowSearchModalClicked } ">
81
+ SEARCH
80
82
</ button >
81
83
`
82
84
}
You can’t perform that action at this time.
0 commit comments