Skip to content
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.

Commit

Permalink
Enhancement #43 : changed search button
Browse files Browse the repository at this point in the history
  • Loading branch information
SMuntaha97 committed Aug 19, 2019
1 parent 8565da3 commit 9720a34
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions PROJECT CODE/public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -11133,6 +11133,11 @@ body {
color: #fff !important;
}

.page-heading {
border-bottom: 1.5px solid rgba(159, 177, 188, 0.2);
padding-bottom: 1rem;
}

div {
display: block;
}
Expand Down
4 changes: 4 additions & 0 deletions PROJECT CODE/resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ body {
color: #fff !important;
}
}
.page-heading {
border-bottom: 1.5px solid rgba(#9fb1bc, 0.2);
padding-bottom: 1rem;
}

div {
display: block;
Expand Down
8 changes: 6 additions & 2 deletions PROJECT CODE/resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
<div class="row justify-content-center text-center my-4">
<div class="col-md-9">
<form>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Search for medicines or doctors">
<button type="submit" class="btn btn-outline-dark my-2">Search</button>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button">Search</button>
</div>
</div>
</form>
</div>
</div>
Expand Down

0 comments on commit 9720a34

Please sign in to comment.