Skip to content

Commit

Permalink
Merge v2 into fix-row-styling
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrojcm committed Sep 28, 2023
2 parents 94a3fb3 + e0be6f8 commit fe6d7c5
Show file tree
Hide file tree
Showing 280 changed files with 3,377 additions and 3,418 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,7 @@ export const SideBarItems = ({ depth = 1, routes, setNavOpen }: Props) => {
whiteSpace: 'nowrap',
transition: 'background-color 0.1s ease',
'&:hover': {
backgroundColor: rgba(
getPrimaryColor(theme),
0.1,
),
backgroundColor: rgba(getPrimaryColor(theme), 0.1),
},
})}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const TopBar = ({ navOpen, setNavOpen }: Props) => {
--docsearch-highlight-color: ${theme.colors[theme.primaryColor][8]};
--docsearch-logo-color: ${theme.colors[theme.primaryColor][8]};
${!isLightTheme
? `--docsearch-container-background: rgba(11, 11, 11, 0.8);
? `--docsearch-container-background: rgba(11, 11, 11, 0.8);
--docsearch-footer-background: #222;
--docsearch-hit-background: #333;
--docsearch-hit-color: #fff;
Expand All @@ -68,7 +68,7 @@ export const TopBar = ({ navOpen, setNavOpen }: Props) => {
--docsearch-searchbox-focus-background: #000;
--docsearch-text-color: #fff;
`
: ''}
: ''}
}
`}
</style>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@mantine/hooks": "^6.0.21",
"@tabler/icons-react": "2.34.0",
"dayjs": "^1.11.9",
"mantine-react-table": "^1.3.0",
"mantine-react-table": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@mantine/hooks": "^6.0.21",
"@tabler/icons-react": "2.34.0",
"dayjs": "^1.11.9",
"mantine-react-table": "^1.3.0",
"mantine-react-table": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ const Example = () => {
Oldest by{' '}
{table.getColumn(cell.row.groupingColumnId ?? '').columnDef.header}:{' '}
<Box
style={{ color: 'skyblue', display: 'inline', fontWeight: 'bold' }}
style={{
color: 'skyblue',
display: 'inline',
fontWeight: 'bold',
}}
>
{cell.getValue()}
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ const Example = () => {
Oldest by{' '}
{table.getColumn(cell.row.groupingColumnId ?? '').columnDef.header}:{' '}
<Box
style={{ color: 'skyblue', display: 'inline', fontWeight: 'bold' }}
style={{
color: 'skyblue',
display: 'inline',
fontWeight: 'bold',
}}
>
{cell.getValue<number>()}
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ const Example = () => {
Oldest by{' '}
{table.getColumn(cell.row.groupingColumnId ?? '').columnDef.header}:{' '}
<Box
style={{ color: 'skyblue', display: 'inline', fontWeight: 'bold' }}
style={{
color: 'skyblue',
display: 'inline',
fontWeight: 'bold',
}}
>
{cell.getValue<number>()}
</Box>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@mantine/hooks": "^6.0.21",
"@tabler/icons-react": "2.34.0",
"dayjs": "^1.11.9",
"mantine-react-table": "^1.3.0",
"mantine-react-table": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@mantine/hooks": "^6.0.21",
"@tabler/icons-react": "2.34.0",
"dayjs": "^1.11.9",
"mantine-react-table": "^1.3.0",
"mantine-react-table": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading

0 comments on commit fe6d7c5

Please sign in to comment.