Skip to content

Commit

Permalink
[FIX] Fix home page for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
jetli committed Dec 21, 2019
1 parent 02e86e2 commit d74c34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/conduit-wasm/src/components/home/main_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Component for MainView {

fn view(&self) -> Html<Self> {
html! {
<div class="col-md-9">
<div class="col-md-9 col-xs-12">
<div class="feed-toggle">
<ul class="nav nav-pills outline-active">
{ self.your_feed_tab() }
Expand Down
2 changes: 1 addition & 1 deletion crates/conduit-wasm/src/components/home/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl Component for Home {
<div class="container page">
<div class="row">
<MainView tag=&self.tag />
<div class="col-md-3">
<div class="col-md-3 col-xs-12">
<div class="sidebar">
<p>{ "Popular Tags" }</p>
<Tags callback=Msg::TagFiltered />
Expand Down

0 comments on commit d74c34f

Please sign in to comment.