feat(ui): grow input when focused

When input is not in use (user not typing) reduce input size to minimum, only expand it when it's focused
This commit is contained in:
Łukasz Mierzwa
2018-08-10 17:36:00 +01:00
parent 9baeab3d53
commit f674fe27ee
@@ -35,3 +35,11 @@ input.components-filterinput-wrapper {
max-width: 600px;
}
}
input.components-filterinput-wrapper {
width: 1px;
}
input.components-filterinput-wrapper:focus {
width: auto;
}