mirror of https://github.com/django/django.git
Fixed #34094 -- Corrected margins in admin headers for RTL languages.
This commit is contained in:
parent
970f61fefb
commit
c01e76c95c
|
@ -936,7 +936,8 @@ a.deletelink:focus, a.deletelink:hover {
|
|||
|
||||
#branding h1 {
|
||||
padding: 0;
|
||||
margin: 0 20px 0 0;
|
||||
margin: 0;
|
||||
margin-inline-end: 20px;
|
||||
font-weight: 300;
|
||||
font-size: 1.5rem;
|
||||
color: var(--header-branding-color);
|
||||
|
|
|
@ -72,7 +72,7 @@ html[data-theme="dark"] {
|
|||
padding: 0;
|
||||
background: transparent;
|
||||
vertical-align: middle;
|
||||
margin-left: 5px;
|
||||
margin-inline-start: 5px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue