<div class="form-field ">
    <label class="label  " for="">
    Search label
    
</label>
    <input class="input  " type="search" name="search-input" id="search-id" placeholder="Search ..." />
</div>
{{#embed "@form-field" }}
	{{#content "content"}}
		{{> @input--search input}}
	{{/content}}
{{/embed}}
{
  "label": {
    "text": "Search label",
    "input-id": "search-id"
  },
  "input": {
    "type": "search",
    "name": "search-input",
    "id": "search-id",
    "placeholder": "Search ..."
  }
}
  • Content:
    .form-field {
        &__label {
            display: block;
            margin-bottom: 5px;
        }
    
        & + .form-field {
            margin-top: 20px;
        }
    
        & + .button {
            margin-top: 20px;
            align-self: flex-start;
        }
    }
    
  • URL: /components/raw/form-field/form-field.css
  • Filesystem Path: src/02-molecules/form-field/form-field.css
  • Size: 227 Bytes

There are no notes for this item.