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-07-28 20:20:41 +02:00
parent 9baeab3d53
commit f674fe27ee

View File

@@ -35,3 +35,11 @@ input.components-filterinput-wrapper {
max-width: 600px;
}
}
input.components-filterinput-wrapper {
width: 1px;
}
input.components-filterinput-wrapper:focus {
width: auto;
}