Skip to content

Commit

Permalink
fix: fix search box wrong placement
Browse files Browse the repository at this point in the history
  • Loading branch information
Angus Chen committed Oct 9, 2023
1 parent 086a231 commit f327a6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Header = () => {
</h2>
</a>
</Link>
<div className="lg:relative lg:ml-auto lg:flex lg:h-9">
<div className="flex lg:relative lg:ml-auto lg:flex lg:h-9">
<nav className="fixed left-0 right-0 top-0 bottom-auto box-border lg:relative lg:right-auto lg:top-auto lg:h-auto lg:w-auto lg:bg-none">
<ul
className={classnames(
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ const isCI = env.get('CI').default('false').asBool()
const config: PlaywrightTestConfig = {
testDir: './',
/* Maximum time one test can run for. */
timeout: 30 * 1000,
timeout: 60 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 30000,
timeout: 60000,
toHaveScreenshot: {
maxDiffPixelRatio: 0.02,
threshold: 0.2,
Expand Down

0 comments on commit f327a6b

Please sign in to comment.