Compare commits

...

1 Commits

Author SHA1 Message Date
Nick Krichevsky 8b5bc6d682 preliminary 2018-07-16 18:57:02 -04:00
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,6 @@
@import "@fortawesome/fontawesome-free/scss/fontawesome.scss";
@import "@fortawesome/fontawesome-free/scss/fa-solid.scss";
.tab-list {
list-style: none;
//Prevent margin breakout of lis
@ -21,6 +24,12 @@
&:hover {
background-color: $hover-color;
}
.tab-title {
}
.close-button {
float: right;
}
}
}

View File

@ -5,6 +5,7 @@
<span class="tab-title">
{{ tab.title }}
</span>
<i class="close-button fas fa-times-circle"></i>
</li>
{% endfor %}
</ul>