Ntfy
-
+
@@ -238,7 +238,7 @@ export default function Settings({backendConnected, apiUri, settings, changeSett
-
+
Test
Reset
Apply
diff --git a/Website/styles/settings.css b/Website/styles/settings.css
index 5241e6a..f93ec13 100644
--- a/Website/styles/settings.css
+++ b/Website/styles/settings.css
@@ -36,6 +36,7 @@
}
.section-item {
+ position: relative;
display: flex;
flex-direction: column;
width: 22%;
@@ -46,7 +47,15 @@
border-width: 1px;
border-color: lightgray;
margin: 7px;
- padding: 5px;
+ padding: 5px 5px 35px;
+}
+
+.section-item[connector-status="Not Configured"]{
+ border-color: var(--primary-color);
+}
+
+.section-item[connector-status="Configured"]{
+ border-color: green;
}
.section-item > .settings-section-title {
@@ -65,3 +74,19 @@
border-radius: 5px;
}
+.section-item .section-actions {
+ position: absolute;
+ bottom: 0;
+ display: flex;
+ justify-content: space-around;
+ margin: 5px;
+ width: 100%;
+}
+
+.section-actions > span {
+ border: 1px solid lightgray;
+ padding: 3px 5px 2px;
+ width: 10ch;
+ text-align: center;
+ border-radius: 3px;
+}
\ No newline at end of file