diff --git a/CHANGELOG.md b/CHANGELOG.md index b17f5e6..0457aff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Support over-140-char tweets properly - Focus on an invisible element with Tab when focusing on the editor - Since v1.6.7, the focus had unintended behaviors. This fixes the issue of v1.6.7+. +- Fix the wrong position of account selector introduced at v1.6.7 ## v1.8.1 - Downgrade Electron from v9.1.2 to v5.0.13 diff --git a/src/index.scss b/src/index.scss index 4ae03d6..864a577 100644 --- a/src/index.scss +++ b/src/index.scss @@ -23,7 +23,7 @@ $dark_grey: #555; $white: #fff; $dark_blue: #0084b4; $orange: #f4c142; -$account_selector_top: $profile_image_size + $editor_vertical_padding; +$account_selector_top: $profile_image_size + $editor_vertical_padding + 6px; @keyframes favorite_animation { 0% { transform: scale(1); } @@ -48,7 +48,7 @@ body { .account_selector { position: absolute; - top: $account_selector_top + 6px; + top: $account_selector_top; left: $profile_image_offset; background: $white; border: 1px solid #d5d5d5; @@ -492,8 +492,8 @@ body { -webkit-app-region: no-drag; } - #account_selector { - top: $account_selector_top + $title_bar_offset + 8px; + .account_selector { + top: $account_selector_top + $title_bar_offset; } .tabs,