Skip to content

Commit 87aca43

Browse files
authored
fix(AsideNavigation): hotkeys section position (#2629)
1 parent 437a81c commit 87aca43

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/containers/AsideNavigation/AsideNavigation.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
padding: 10px;
2121
}
2222
&__hotkeys-drawer {
23-
left: 0;
23+
left: 0 !important;
2424
}
2525
&__hotkeys-panel-title {
2626
display: flex;

tests/suites/sidebar/sidebar.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ test.describe('Test Sidebar', async () => {
6666

6767
// Click the Information button to open the popup
6868
await sidebar.clickInformation();
69-
await page.waitForTimeout(500); // Wait for animation
69+
await page.waitForTimeout(700); // Wait for animation
7070

7171
// Check if the popup is visible
7272
await expect(sidebar.isPopupVisible()).resolves.toBe(true);
@@ -86,7 +86,7 @@ test.describe('Test Sidebar', async () => {
8686

8787
// Click the Information button to open the popup
8888
await sidebar.clickInformation();
89-
await page.waitForTimeout(500); // Wait for animation
89+
await page.waitForTimeout(700); // Wait for animation
9090

9191
// Check if the popup is visible
9292
await expect(sidebar.isPopupVisible()).resolves.toBe(true);

0 commit comments

Comments
 (0)