feat: added basic template management

This commit is contained in:
Andrew Rioux
2025-02-01 01:07:25 -05:00
parent 71b2f70686
commit ba5145c5ae
8 changed files with 537 additions and 21 deletions

View File

@@ -0,0 +1,26 @@
main.beacons div.templates {
padding: 10px;
fieldset {
display: grid;
grid-template-columns: 400px 200px;
grid-row-gap: 10px;
input, label {
margin: 10px;
}
}
.mode-host, .mode-custom {
display: none;
}
select[name="source_mode"]:has(> option[value="custom"]:checked) ~ .mode-custom {
display: block;
}
h4 {
margin-bottom: 5px;
border-bottom: 1px solid #2e2e59;
}
}