Merge pull request #9 from ashkitten/mistress

switch to grid layout
This commit is contained in:
iliana weller 2018-07-25 22:30:34 -04:00
commit 57848ec2c2
No known key found for this signature in database
GPG Key ID: DCE341C8E949BC81
2 changed files with 10 additions and 16 deletions

View File

@ -11,34 +11,28 @@ a {
}
dl.emojo {
column-width: 220px;
column-gap: 20px;
column-rule: 1px solid gray;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15em, max-content));
grid-row-gap: 5px;
}
dl.emojo div {
height: 20px;
padding-bottom: 5px;
cursor: pointer;
}
dl.emojo dt {
width: 28px;
height: 20px;
display: table-cell;
vertical-align: middle;
dl.emojo div * {
display: inline-block;
}
dl.emojo dt img {
height: 20px;
width: 20px;
width: 28px;
object-fit: contain;
margin: -3px 0 0;
}
dl.emojo dd {
height: 20px;
display: table-cell;
vertical-align: middle;
margin-left: 0;
padding: 0px 8px;
}
dl.emojo dd.success {

View File

@ -8,7 +8,7 @@
<dl class="emojo">
{% for emoj in emojo %}
<div>
<dt><img src="{{ emoj['static_url'] }}" alt=":{{ emoj['shortcode'] }}:"></dt>
<dt><img src="{{ emoj.static_url }}" alt=":{{ emoj.shortcode }}:"></dt>
<dd>:{{ emoj.shortcode }}:</dd>
</div>
{% endfor %}