We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0f289 commit fee69deCopy full SHA for fee69de
filebrowser.js
@@ -1846,11 +1846,18 @@ sidebarBranch.addEventListener('click', () => {
1846
sidebarBranch.classList.toggle('active');
1847
1848
if (branchMenu.classList.contains('visible')) {
1849
-
1850
- // move branch menu to icon
1851
- onNextFrame(() => {
+
+ if (!isSafari) {
1852
+ // move branch menu to icon
1853
moveElToEl(branchMenu, sidebarBranch, 13);
- });
1854
1855
+ } else {
1856
1857
1858
+ moveElToEl(branchMenu, sidebarBranch, 23);
1859
1860
+ }
1861
1862
branchMenu.classList.add('top-margin');
1863
0 commit comments