Commit 707fd07d authored by JC Brand's avatar JC Brand

Fix emoji picker for Safari.

Use `float:left` instead of flexbox
parent e7661b72
...@@ -29,12 +29,13 @@ ...@@ -29,12 +29,13 @@
cursor: auto; cursor: auto;
color: var(--subdued-color); color: var(--subdued-color);
font-size: var(--font-size); font-size: var(--font-size);
padding: 0.5em 0 0 0.5em; margin: 0;
padding: 0.75em 0 0 0.5em;
}
.emoji-picker {
li {
float: left;
} }
ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
} }
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -63,7 +64,10 @@ ...@@ -63,7 +64,10 @@
} }
.emoji-picker { .emoji-picker {
background-color: white; background-color: white;
padding: 0.5em; padding: 0.5em 0 0 0.5em;
&:last-child {
padding-bottom: 0.5em;
}
li { li {
margin-left: 0; margin-left: 0;
cursor: pointer; cursor: pointer;
......
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