Skip to content

Commit

Permalink
remove errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AymericBethencourt committed Aug 6, 2020
1 parent 67b96be commit 3ce7b73
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 161 deletions.
160 changes: 0 additions & 160 deletions src/api/error.log

This file was deleted.

2 changes: 1 addition & 1 deletion src/frontend/src/pages/ChapterAbout/ChapterAbout.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ChapterStyled = styled.div`

export const ChapterGrid = styled.div<{ hasTabs?: boolean }>`
display: grid;
grid-template-rows: ${(props) => (props.hasTabs ? 'auto 500px auto' : '500px auto')};
grid-template-rows: ${(props) => (props.hasTabs ? '30px 500px auto' : '500px auto')};
grid-gap: 0;
overflow-y: scroll;
Expand Down
18 changes: 18 additions & 0 deletions src/frontend/src/styles/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ export const GlobalStyle = createGlobalStyle`
box-sizing: border-box;
}
:root {
--glitch-height: 100vh;
--gap-horizontal: 10px;
--gap-vertical: 5px;
--time-anim: 6s;
--delay-anim: 0s;
--blend-mode-1: none;
--blend-mode-2: none;
--blend-mode-3: none;
--blend-mode-4: none;
--blend-mode-5: overlay;
--blend-color-1: transparent;
--blend-color-2: transparent;
--blend-color-3: transparent;
--blend-color-4: transparent;
--blend-color-5: #af4949;
}
body {
font-family: 'Electrolize', Helvetica, Arial, sans-serif;
font-display: optional;
Expand Down

0 comments on commit 3ce7b73

Please sign in to comment.