app: Add Bootstrap classes.

This commit is contained in:
Valentin Tolmer
2021-09-19 19:44:53 +02:00
committed by nitnelave
parent 00efdb42af
commit a952968e9f
11 changed files with 307 additions and 104 deletions

View File

@@ -65,7 +65,11 @@ impl Component for LogoutButton {
fn view(&self) -> Html {
html! {
<button onclick=self.link.callback(|_| Msg::LogoutRequested)>{"Logout"}</button>
<button
class="btn btn-primary"
onclick=self.link.callback(|_| Msg::LogoutRequested)>
{"Logout"}
</button>
}
}
}