change(ui) - header logo changes

This commit is contained in:
Shekar Siri 2022-08-12 11:49:04 +02:00
parent 289c5c9611
commit d90b222fa3
2 changed files with 3 additions and 3 deletions

View file

@ -66,8 +66,8 @@ const Header = (props) => {
return (
<div className={ cn(styles.header) } style={{ height: '50px'}}>
<NavLink to={ withSiteId(SESSIONS_PATH, siteId) }>
<div className="relative">
<div className="p-2">
<div className="relative select-none">
<div className="px-4 py-2">
<AnimatedSVG name={ICONS.LOGO_SMALL} size="30" />
</div>
<div className="absolute bottom-0" style={{ fontSize: '7px', right: '5px' }}>v{window.env.VERSION}</div>

View file

@ -9,7 +9,7 @@ $height: 50px;
display: flex;
justify-content: space-between;
border-bottom: solid thin $gray-light;
padding: 0 15px;
/* padding: 0 15px; */
background: $white;
z-index: $header;
}