mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
fix lint errors
This commit is contained in:
parent
28321236d6
commit
ab3d4b7e8f
2 changed files with 10 additions and 5 deletions
|
|
@ -112,7 +112,11 @@ const Tab = (props: TabProps) => {
|
|||
}
|
||||
|
||||
.tab_icon {
|
||||
transition: opacity 0.2s ease, color 0.2s ease, transform 0.25s ease, background-color 0.1s ease;
|
||||
transition:
|
||||
opacity 0.2s ease,
|
||||
color 0.2s ease,
|
||||
transform 0.25s ease,
|
||||
background-color 0.1s ease;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
|
|
|
|||
|
|
@ -38,7 +38,8 @@ test.before(async () => {
|
|||
|
||||
test.after(async () => {
|
||||
await app
|
||||
.evaluate(({BrowserWindow}) =>
|
||||
.evaluate(
|
||||
({BrowserWindow}) =>
|
||||
BrowserWindow.getFocusedWindow()
|
||||
?.capturePage()
|
||||
.then((img) => img.toPNG().toString('base64'))
|
||||
|
|
|
|||
Loading…
Reference in a new issue