Skip to content

Commit

Permalink
Merge pull request #26 from masterChallenge/develop
Browse files Browse the repository at this point in the history
v1.3
  • Loading branch information
mariosilvae authored Mar 23, 2021
2 parents f19857d + fb15ac8 commit 064fe6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/molecules/Navbar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ReactComponent as Logo } from "../../../assets/Logo-Horizontal-BW.svg";

const Navbar = () => {
return (
<header className="w-full bg-primary flex justify-around items-center h-24">
<header className="w-full bg-primary flex justify-around items-center h-24 shadow-lg">
<Link to="/">
<Logo alt="Logo" />
</Link>
Expand Down
4 changes: 3 additions & 1 deletion src/components/molecules/Panel/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Panel({ css, html }) {

return (
<>
<div className="relative bg-gray-200 w-1/4 border-2 border-secondary-darker p-0.5 overflow-hidden">
<div className="relative bg-gray-200 w-1/4 border-2 border-secondary-darker overflow-hidden">
<div
style={{
position: "absolute",
Expand All @@ -29,6 +29,8 @@ export default function Panel({ css, html }) {
height: "500px",
maxHeight: "100%",
width: "100%",
padding: 2,
overflow: "hidden",
}}
dangerouslySetInnerHTML={createMarkup()}
></div>
Expand Down

1 comment on commit 064fe6a

@vercel
Copy link

@vercel vercel bot commented on 064fe6a Mar 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.