I have a Widget that I created using HTML & CSS, and it looks good. However, I am struggling to add some space between the inside elements and the border line. Can someone please assist me with this?
.solid { border-style: solid; }
<div class="solid">
<div class="input-group">
<input type="text" ng-model="c.data.message" class="form-control" aria-label="...">
<div class="input-group-btn">
<button type="submit" ng-click="c.add()" class="btn btn-primary">Search</button>
</div>
</div>
</div>
Here is what my current output looks like: