Skip to content

Commit

Permalink
fix: limit width input container
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-lebleu committed Mar 28, 2024
1 parent 9fae7b0 commit 258191e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/sass/kompletr.demo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ footer {
.kompletr {

&.form--search {
width: 30%;
width: 400px;
max-width: 400px;
position: relative;
margin: 0 auto;
@media (max-width: 480px) {
Expand Down
2 changes: 1 addition & 1 deletion src/sass/kompletr.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
///
.kompletr {
&.form--search {
width: 30%;
width: inherit;
position: relative;
margin: 0 auto;
@media (max-width: 480px) {
Expand Down

0 comments on commit 258191e

Please sign in to comment.