Browse Source

Fix line wrapping issue for date inputs and total count in filter bar

pull/4/head
徐飞洋 1 month ago
parent
commit
ca071940b1
  1. 20
      web/src/main/resources/static/index.html

20
web/src/main/resources/static/index.html

@ -159,6 +159,26 @@
display: flex; display: flex;
gap: 10px; gap: 10px;
align-items: center; align-items: center;
white-space: nowrap;
}
.filter-bar span {
white-space: nowrap;
}
.filter-bar input[type="date"] {
white-space: nowrap;
min-width: 130px;
}
.filter-bar select {
white-space: nowrap;
min-width: 100px;
}
.filter-bar input[type="text"] {
white-space: nowrap;
min-width: 150px;
} }
.filter-bar button { .filter-bar button {

Loading…
Cancel
Save