Skip to content

Commit

Permalink
feat(fe/user/likes): Same header as my classes
Browse files Browse the repository at this point in the history
  • Loading branch information
MendyBerger committed Jul 8, 2024
1 parent 5386a6d commit 5df023c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions frontend/apps/crates/entry/user/src/likes/dom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,16 @@ impl Likes {
html!("div", {
.child(PageHeader::new(Default::default()).render())
.child(html!("h1", {
.style("text-align", "center")
.style("color", "var(--main-red)")
.style("background-color", "var(--light-red-alert)")
.style("margin", "0")
.style("padding-block", "20px")
.style("height", "86px")
.style("background-color", "var(--light-blue-6)")
.style("margin", "0px")
.style("display", "grid")
.style("align-items", "center")
.style("justify-content", "start")
.style("padding-inline", "40px")
.style("font-size", "29px")
.style("font-weight", "900")
.style("color", "var(--main-yellow)")
.text("My likes")
}))
.child(state.jigs.render())
Expand Down

0 comments on commit 5df023c

Please sign in to comment.