Skip to content

Commit

Permalink
tried to fix the checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ciegler committed Jul 1, 2024
1 parent 8f16f16 commit aab0061
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ function Header() {
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>
</div>
<div>
<picture css={{
height: "100%",

Check warning on line 98 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 6 spaces but found 4
"> *": {

Check warning on line 99 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 8 spaces but found 6
height: "calc(100% - 0.5px)",

Check warning on line 100 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 8 spaces but found 6
},

Check warning on line 101 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 10 spaces but found 8
}}>

Check warning on line 102 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 8 spaces but found 6
<source srcSet={path("opencast-editor.svg")}></source>

Check warning on line 103 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 6 spaces but found 4
<img src={path("opencast-editor.svg")} alt="Opencast Editor Logo"/>

Check warning on line 104 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 8 spaces but found 6
</picture>

Check warning on line 105 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 8 spaces but found 6
</div>

Check warning on line 106 in src/main/Header.tsx

View workflow job for this annotation

GitHub Actions / test

Expected indentation of 6 spaces but found 4
)
};

Expand Down

0 comments on commit aab0061

Please sign in to comment.