Skip to content

Commit

Permalink
#1050 set fixed css style for navbar brand image
Browse files Browse the repository at this point in the history
  • Loading branch information
geopossachs committed Jun 3, 2020
1 parent 8662f85 commit 00d9518
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void encodeBegin(FacesContext context, UIComponent component) throws IOEx
rw.startElement("img", navBar);
rw.writeAttribute("alt", altText, "alt");
rw.writeAttribute("src", brandImg, "src");
writeAttribute(rw, "style", navBar.getBrandImgStyle());
writeAttribute(rw, "style", "vertical-align: top; " + navBar.getBrandImgStyle());
writeAttribute(rw, "class", navBar.getBrandImgStyleClass());
rw.endElement("img");
}
Expand Down

0 comments on commit 00d9518

Please sign in to comment.