aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-02-28 12:00:50 +0100
committercodecalm <codecalm@gmail.com>2020-02-28 12:00:50 +0100
commit4fcdf32cff825bc93defe0001c482dc17e8b648b (patch)
tree83a5e6e923ff319c09d386177d38dc8425eca992 /index.html
parentsimple icon manager (diff)
downloadtabler-icons-4fcdf32cff825bc93defe0001c482dc17e8b648b.tar.xz
css fix
Diffstat (limited to 'index.html')
-rw-r--r--index.html22
1 files changed, 15 insertions, 7 deletions
diff --git a/index.html b/index.html
index 0ae728e..cb8efeb 100644
--- a/index.html
+++ b/index.html
@@ -20,7 +20,7 @@
{% include icon.html name=last-icon.slug %}
{% endcapture %}
- <div class="row">
+ <div class="row mb">
<div class="col">
<div class="icon-preview-wrap">
@@ -71,15 +71,23 @@
</div>
- <div class="icons-list">
- {% for icon in site.icons %}
- <div class="icon" title="{{ icon.slug }}">
- {% assign name = icon.slug %}
- {% include icon.html name=name %}
+ <div>
+ <div class="icons-list">
+ {% for icon in site.icons %}
+ <a href="#" class="icons-list-icon" title="{{ icon.slug }}">
+ {% assign name = icon.slug %}
+ {% include icon.html name=name %}
+ </a>
+ {% endfor %}
</div>
- {% endfor %}
</div>
</div>
</div>
+
+<script>
+ (function(){
+
+ })();
+</script>
</body>
</html>