Fix delete element

This commit is contained in:
Jeremy Thomas
2016-10-30 16:11:04 +00:00
parent 84a40052fc
commit 36822ed3fb
9 changed files with 667 additions and 35 deletions

View File

@@ -16,7 +16,7 @@ doc-subtab: icon
<hr>
<div class="content">
<p>Because the icons can take a few seconds to load, and because you want control over the <strong>space</strong> the icons will take, you can use the <code>icon</code> class:</p>
<p>Because the icons can take a few seconds to load, and because you want control over the <strong>space</strong> the icons will take, you can use the <code>icon</code> class as a container:</p>
</div>
<div class="example">
@@ -32,7 +32,7 @@ doc-subtab: icon
{% endhighlight %}
<div class="content">
<p>The <code>icon</code> container will take up <em>exactly</em> <strong>24 x 24 pixels</strong>. The icon itself is sized at <strong>21px</strong>.</p>
<p>The <code>icon</code> container will take up <em>exactly</em> <strong>1.5rem x 1.5rem</strong>. The icon itself is sized at <strong>21px</strong>.</p>
</div>
<hr>
@@ -57,25 +57,25 @@ doc-subtab: icon
<td><code>icon is-small</code></td>
<td><span class="icon is-small"><i class="fa fa-home"></i></span></td>
<td>14px</td>
<td>16x16px</td>
<td>1rem x 1rem</td>
</tr>
<tr>
<td><code>icon</code></td>
<td><span class="icon"><i class="fa fa-home"></i></span></td>
<td>21px</td>
<td>24x24px</td>
<td>1.5rem x 1.5rem</td>
</tr>
<tr>
<td><code>icon is-medium</code></td>
<td><span class="icon is-medium"><i class="fa fa-home"></i></span></td>
<td>28px</td>
<td>32x32px</td>
<td>2rem x 2rem</td>
</tr>
<tr>
<td><code>icon is-large</code></td>
<td><span class="icon is-large"><i class="fa fa-home"></i></span></td>
<td>42px</td>
<td>48x48px</td>
<td>3rem x 3rem</td>
</tr>
</tbody>
</table>