Skip to content

Commit

Permalink
Enhance Search input to be larger
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHelalAhmed committed Sep 4, 2021
1 parent 28ea676 commit 7ec31fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -1299,6 +1299,9 @@ select {
.w-72 {
width: 18rem;
}
.w-1\/2 {
width: 50%;
}
.min-w-0 {
min-width: 0px;
}
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -24781,7 +24781,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
return _ctx.filter && _ctx.filter.apply(_ctx, arguments);
}, ["prevent"]))
}, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("div", _hoisted_6, [(0,vue__WEBPACK_IMPORTED_MODULE_0__.withDirectives)((0,vue__WEBPACK_IMPORTED_MODULE_0__.createElementVNode)("input", {
"class": "border-2 border-gray-300 bg-white h-10 px-5 pr-16 rounded-lg text-sm focus:outline-none",
"class": "w-1/2 border-2 border-gray-300 bg-white h-10 px-5 pr-16 rounded-lg text-sm focus:outline-none",
type: "search",
name: "title",
placeholder: "Search by title",
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Channels/Videos/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<form @submit.prevent="filter">
<div class="pt-2 relative mx-auto text-gray-600">
<input
class="border-2 border-gray-300 bg-white h-10 px-5 pr-16 rounded-lg text-sm focus:outline-none"
class="w-1/2 border-2 border-gray-300 bg-white h-10 px-5 pr-16 rounded-lg text-sm focus:outline-none"
type="search" name="title" placeholder="Search by title" v-model="form.title">
</div>
<div class="mt-4">
Expand Down

0 comments on commit 7ec31fc

Please sign in to comment.