Skip to content

Commit

Permalink
fixed checkstyle issues finally
Browse files Browse the repository at this point in the history
  • Loading branch information
ciegler committed Jul 1, 2024
1 parent aab0061 commit 6a7cd34
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,17 @@ const LogoPicture: React.FC = () => {
const path = (filename:string) => import.meta.env.BASE_URL + filename;
return (
<div>
<picture css={{
height: "100%",
"> *": {
height: "calc(100% - 0.5px)",
},
}}>
<source srcSet={path("opencast-editor.svg")}></source>
<img src={path("opencast-editor.svg")} alt="Opencast Editor Logo"/>
</picture>
<picture css={{
height: "100%",
"> *": {
height: "calc(100% - 0.5px)",
},
}}>
<source srcSet={path("opencast-editor.svg")}></source>
<img src={path("opencast-editor.svg")} alt="Opencast Editor Logo"/>
</picture>
</div>
)
);
};

const Logo: React.FC = () => {
Expand Down

0 comments on commit 6a7cd34

Please sign in to comment.