Notes: Building Chrome Extension
Styles on <input> Selector
When we add the width to be 100% of the container, the padding also gets added twice and the input field grows bigger than the width. The trick to edit that is adding box-sizing
input {
width: 100%;
padding-left: 10...
codelady.hashnode.dev3 min read