diff --git a/sass/custom/_paulus.scss b/sass/custom/_paulus.scss index 0f870b81f88..a0467c869e6 100644 --- a/sass/custom/_paulus.scss +++ b/sass/custom/_paulus.scss @@ -330,6 +330,21 @@ p.note { -moz-transition-property: -moz-transform, opacity; transition-property: transform, opacity; } + + + .component-search{ + margin-bottom: 24px; + + input{ + width: 100%; + padding: 10px; + + background-color: #fefefe; + border-radius: 2px; + border: 1px solid; + border-color: #7c7c7c #c3c3c3 #ddd; + } + } } @media only screen and (max-width: $lap-end) { diff --git a/source/components/index.html b/source/components/index.html index 251a74a201b..96487db996a 100644 --- a/source/components/index.html +++ b/source/components/index.html @@ -52,24 +52,33 @@ Support for these components is provided by the Home Assistant community. Other -
- {% for component in components %} - {% if component.ha_category %} - {% assign sliced_version = component.ha_release | split: '.' %} - {% assign minor_version = sliced_version[1]|plus: 0 %} - -
- {% if component.logo %} - - {% endif %} -
-
{{ component.title }}
-
{{ component.ha_category }}
-
- {% endif %} - {% endfor %} +
+ +
+ {% for component in components %} + {% if component.ha_category %} + {% assign sliced_version = component.ha_release | split: '.' %} + {% assign minor_version = sliced_version[1]|plus: 0 %} + +
+ {% if component.logo %} + + {% endif %} +
+
{{ component.title }}
+
{{ component.ha_category }}
+
+ {% endif %} + {% endfor %} +
@@ -85,20 +94,32 @@ Support for these components is provided by the Home Assistant community.