Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tavern/internal/www/build/asset-manifest.json

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

2 changes: 1 addition & 1 deletion tavern/internal/www/build/index.html

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

4 changes: 4 additions & 0 deletions tavern/internal/www/build/static/css/main.8eb09134.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tavern/internal/www/build/static/css/main.8eb09134.css.map

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions tavern/internal/www/build/static/css/main.f96af0b6.css

This file was deleted.

1 change: 0 additions & 1 deletion tavern/internal/www/build/static/css/main.f96af0b6.css.map

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tavern/internal/www/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="preload" href="/static/media/eldrich.png" as="image" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Realm is a cross platform Red Team engagement platform with a focus on automation and reliability." />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const FullSidebarNav = ({ currNavItem, handleSidebarMinimized }: FullSidebarNavP
className="h-10 w-auto"
src={logo}
alt="Realm"
width="40"
height="40"
/>
<div className="text-white text-3xl leading-6 font-semibold tracking-wide">Realm</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ const MinimizedSidebarNav = ({ currNavItem, handleSidebarMinimized }: MinimizedS
className="h-8 w-auto"
src={logo}
alt="Realm"
width="32"
height="32"
/>
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const Table = ({
<div className="overflow-x-auto -mx-4 sm:-mx-6 xl:-mx-8">
<div className="inline-block min-w-full align-middle">
<table className="w-full divide-y divide-gray-200 table-fixed">
<thead className="bg-gray-50 sticky top-0 z-10">
<thead className="bg-gray-50 sticky top-0 z-5">
{table.getHeaderGroups().map(headerGroup => (
<tr key={headerGroup.id}>
{headerGroup.headers.map(header => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function TablePagination(props: Props) {

return (
<nav
className="sticky bottom-0 z-10 flex items-center justify-between border-t border-gray-200 bg-white px-4 sm:px-6 xl:px-8 py-3 shadow-md"
className="sticky bottom-0 z-5 flex items-center justify-between border-t border-gray-200 bg-white px-4 sm:px-6 xl:px-8 py-3 shadow-md z-5"
aria-label="Pagination"
>
<div className="hidden sm:block">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const TableWrapper: React.FC<TableWrapperProps> = ({
<div className={`
flex flex-row justify-between items-center
px-4 sm:px-6 xl:px-8 py-2 border-b border-gray-200 bg-white gap-2
${stickyControls ? 'sticky top-0 z-20 shadow-sm' : ''}
${stickyControls ? 'sticky top-0 z-5 shadow-sm' : ''}
`}>
<h3 className="text-xl font-semibold leading-6 text-gray-900 md:visible invisible">{title}</h3>
<div className="flex flex-row justify-end gap-2 w-full md:w-auto">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('TableWrapper', () => {
<TableWrapper {...defaultProps} filterControls={mockFilterControls} stickyControls={true} />
);

const controlsDiv = container.querySelector('.sticky.top-0.z-20.shadow-sm');
const controlsDiv = container.querySelector('.sticky.top-0.z-5.shadow-sm');
expect(controlsDiv).toBeInTheDocument();
});

Expand All @@ -137,7 +137,7 @@ describe('TableWrapper', () => {
<TableWrapper {...defaultProps} filterControls={mockFilterControls} stickyControls={false} />
);

const controlsDiv = container.querySelector('.sticky.top-0.z-20.shadow-sm');
const controlsDiv = container.querySelector('.sticky.top-0.z-5.shadow-sm');
expect(controlsDiv).not.toBeInTheDocument();
});
});
Expand Down
Loading