1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-03-24 17:27:16 +00:00

🔧 Add logo placeholder to the sidebar

This commit is contained in:
Stefano Pigozzi 2021-04-21 15:16:08 +02:00
parent 357ade1890
commit 6017285a18
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01
2 changed files with 4 additions and 0 deletions
code/frontend/src/components

View file

@ -6,6 +6,8 @@ import classNames from "classnames"
export default function Sidebar({ children, className, ...props }) {
return (
<div className={classNames(Style.Sidebar, className)} {...props}>
{/* TODO: Aggiungere il logo qui! */}
<img src={""} width={230} height={170}/>
{children}
</div>
)

View file

@ -6,4 +6,6 @@
background-color: var(--bg-light);
border-radius: 25px;
padding: 10px;
}