Remove old ha-form-style (#21751)

This commit is contained in:
Steve Repsher 2024-08-21 00:29:13 -04:00 committed by GitHub
parent 8ed68bf295
commit 46fc9c1a33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +0,0 @@
const documentContainer = document.createElement("template");
documentContainer.setAttribute("style", "display: none;");
documentContainer.innerHTML = `<dom-module id="ha-form-style">
<template>
<style>
.form-group {
@apply --layout-horizontal;
@apply --layout-center;
padding: 8px 16px;
}
.form-group label {
@apply --layout-flex-2;
}
.form-group .form-control {
@apply --layout-flex;
}
.form-group.vertical {
@apply --layout-vertical;
@apply --layout-start;
}
</style>
</template>
</dom-module>`;
document.head.appendChild(documentContainer.content);