Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit 28d290b

Browse files
committed
fix overflow on search box
1 parent 8d702d2 commit 28d290b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/js/pages/landing/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ module.exports = function (state, emit) {
117117
}
118118
}
119119

120-
const searchIcon = datIcon('search', {class: 'absolute top-1 ml1 left-0 h2 w2 color-green'})
120+
const searchIcon = datIcon('search', {class: 'bg-white absolute top-1 ml1 left-0 h2 w2 color-green'})
121121
return html`
122122
<div class="relative dat-input db">
123123
${searchIcon}
124-
<input class="f3 pv3 pr4 pl3 indent w-100 dat-input__input h3" name="import-dat" type="text" placeholder="preview dat://" onkeydown=${keydown} />
124+
<input style="overflow:hidden;" class="f3 pv3 pr4 pl3 indent w-100 dat-input__input h3" name="import-dat" type="text" placeholder="preview dat://" onkeydown=${keydown} />
125125
</div>
126126
`
127127
}

0 commit comments

Comments
 (0)