1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-24 14:52:54 +02:00

docs: add radio is-dark in the demo page.

This commit is contained in:
Igor Guastalla de Lima
2019-02-26 09:41:50 -03:00
parent 505d706abd
commit 0519ec3130

View File

@@ -30,7 +30,19 @@ const sampleCollection = [
<label>
<input type="radio" class="nes-radio" name="answer" />
<span>No</span>
</label>`,
</label>
<div style="background-color:#212529; padding: 1rem;">
<label>
<input type="radio" class="nes-radio is-dark" name="answer-dark" checked />
<span>Yes</span>
</label>
<label>
<input type="radio" class="nes-radio is-dark" name="answer-dark" />
<span>No</span>
</label>
</div>`,
},
{
title: 'checkboxes',