Commit 8fd894f2 authored by Jordan Frankfurt's avatar Jordan Frankfurt Committed by GitHub

fix a prominent instance (#1304)

parent cc221833
...@@ -83,7 +83,11 @@ const HeaderControls = styled.div` ...@@ -83,7 +83,11 @@ const HeaderControls = styled.div`
const HeaderElement = styled.div` const HeaderElement = styled.div`
display: flex; display: flex;
align-items: center; align-items: center;
gap: 8px;
/* addresses safari's lack of support for "gap" */
& > *:not(:first-child) {
margin-left: 8px;
}
${({ theme }) => theme.mediaWidth.upToMedium` ${({ theme }) => theme.mediaWidth.upToMedium`
flex-direction: row-reverse; flex-direction: row-reverse;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment