<div class="atm-form-checkbox ">
    <input class="form-checkbox" type="checkbox" id="checkbox" name="checkbox">
    <label class="form-label   " for="checkbox">

    </label>
</div>
<div class="atm-form-checkbox {{modifier}}">
  <input
    class="form-checkbox" 
    type="checkbox" 
    {{#if id}}id="{{id}}"{{/if}}
    {{#if name}}name="{{name}}"{{/if}}
    {{#if value}}value="{{value}}"{{/if}}
    {{#if checked}}checked{{/if}}
    {{#if disabled}}disabled{{/if}}>
    {{render '@label' label merge=true}}
</div>
{
  "modifier": "",
  "id": "checkbox",
  "name": "checkbox",
  "value": "",
  "checked": false,
  "disabled": false,
  "label": {
    "text": "",
    "for": "checkbox"
  }
}
  • Content:
    .atm-form-checkbox,
    .search-filter-item {
        @apply relative pl-6;
    
        .form-checkbox {
            @apply absolute left-0 text-black  border border-solid border-black-400;
            top: 4px;
    
            &[disabled] {
                @apply bg-black-100;
            }
        }
    }
    
  • URL: /components/raw/app-checkbox/app-checkbox.css
  • Filesystem Path: src\components\07-app-atoms\app-checkbox\app-checkbox.css
  • Size: 276 Bytes

No notes defined.