commit 149a010b3d1ad037ecb805690dab2ffa9c741548 parent f9049009d7ad736ac234ec5ea6425b12fccb911c Author: Marcel <mtrnord1@gmail.com> Date: Sat, 6 Jun 2020 23:03:49 +0200 Give roomlist a min-width Took 2 minutes Diffstat:
| M | src/app/components/room_list.rs | | | 2 | +- |
| M | static/custom-css.scss | | | 4 | ++++ |
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/app/components/room_list.rs b/src/app/components/room_list.rs @@ -141,7 +141,7 @@ impl Component for RoomList { } } else { html! { - <div class="container uk-flex uk-flex-column uk-width-1-6" style="height: 100%"> + <div class="container roomlist uk-flex uk-flex-column uk-width-1-6" style="height: 100%"> <div class="uk-padding uk-padding-remove-bottom" style="height: 50px"> <form class="uk-search uk-search-default"> <span uk-search-icon=""></span> diff --git a/static/custom-css.scss b/static/custom-css.scss @@ -89,3 +89,7 @@ em { .error { color: red; } + +.roomlist { + min-width: 260px; +}