Skip to content
Snippets Groups Projects
Commit c530cb12 authored by chrisgarrity's avatar chrisgarrity
Browse files

Fix connection modal padding for RTL

parent f9fd7c90
No related branches found
No related tags found
No related merge requests found
......@@ -121,9 +121,16 @@
.radar-small {
width: 40px;
height: 40px;
}
[dir="ltr"] .radar-small {
margin-right: 0.5rem;
}
[dir="rtl"] .radar-small {
margin-left: 0.5rem;
}
.radar-big {
width: 120px;
height: 120px;
......@@ -184,6 +191,7 @@
position: absolute;
top: -5px;
right: -15px;
left: -15px;
padding: 5px 5px;
background-color: $pen-primary;
border-radius: 100%;
......@@ -232,7 +240,6 @@
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin-left: 3rem;
}
[dir="ltr"] .scratch-link-help-step {
......
......@@ -83,10 +83,14 @@ $sides: 20rem;
user-select: none;
}
.header-image {
[dir="ltr"] .header-image {
margin-right: 0.5rem;
}
[dir="rtl"] .header-image {
margin-left: 0.5rem;
}
.header-item-filter {
display: flex;
flex-basis: $sides;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment