ASC.Web.Common: Layout: fix opened logo style

This commit is contained in:
Andrey Savihin 2019-12-23 15:52:04 +03:00
parent 445fd9c1c8
commit a808e803aa

View File

@ -20,8 +20,13 @@ const NavLogoItem = React.memo(props => {
const navLogoOpenedIconStyle = {
display: props.opened ? "block" : "none",
maxHeight: "24px",
width: "auto"
width: "141px",
minWidth: "141px",
height: "22px",
minHeight: "22px",
position: "absolute",
top: "17px",
left: "13px"
};
return (