mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
In RTL the settings cog moves to the left side of the header, but .avatar-popover still used right: 0 from the LTR rule, pushing the 280px popup off-screen to the left. Mirror the existing entry-help-popover RTL pattern with right: auto; left: 0 so the popover stays in view. Fixes #2719
This commit is contained in:
parent
ed5d569c57
commit
f8d71fdcb3
1 changed files with 4 additions and 0 deletions
|
|
@ -1529,6 +1529,10 @@ code {
|
|||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
[dir="rtl"] .avatar-popover {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
.avatar-popover-head {
|
||||
padding: 10px 10px 8px;
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Reference in a new issue