diff --git a/src/app/last-time/last-time.component.html b/src/app/last-time/last-time.component.html index 60ef346..5f7ba54 100644 --- a/src/app/last-time/last-time.component.html +++ b/src/app/last-time/last-time.component.html @@ -22,6 +22,8 @@ title="Double click to edit"> {{ item.name }} + } diff --git a/src/app/settings/settings.component.html b/src/app/settings/settings.component.html index 7b8a4a3..e5c0adf 100644 --- a/src/app/settings/settings.component.html +++ b/src/app/settings/settings.component.html @@ -1,100 +1,108 @@

Settings

-
+ + + - - Database name - - + + Database name + + -
-
- - Redirect to HTTPS - -
-
+
+
+ + Redirect to HTTPS + +
+
-
-
- - Show DEBUG Tab - -
-
+
+
+ + Show DEBUG Tab + +
+
-
-

Remote Sync

+
+

Remote Sync

-
-
- - Enable Remote Sync - -
-
+
+
+ + Enable Remote Sync + +
+
- - User - - + + User + + - - Password - - + + Password + + - - Remote database endpoint - - - + + Remote database endpoint + + + -
- - -
+
+ + +
-
+ +
-
-

DB Info: {{ storageEstimated }}

-

- + +

+

DB Info: {{ storageEstimated }}

+

+ +

+

+ + +

+
+ + + +

App Version: + {{ version.commit }}

- -

-
- -
+ -

App Version: - {{ version.commit }} - -

- +
diff --git a/src/app/stopwatch/stopwatch.component.html b/src/app/stopwatch/stopwatch.component.html index 52fc74e..84cb7ed 100644 --- a/src/app/stopwatch/stopwatch.component.html +++ b/src/app/stopwatch/stopwatch.component.html @@ -22,6 +22,8 @@ title="Double click to edit"> {{ item.name }} + } diff --git a/src/app/styles/styles.scss b/src/app/styles/styles.scss index 84cad5e..03641f3 100644 --- a/src/app/styles/styles.scss +++ b/src/app/styles/styles.scss @@ -113,6 +113,7 @@ form { min-width: 150px; max-width: 500px; width: 100%; + margin-bottom: 1em; button { margin-left: 0.5em !important; @@ -122,7 +123,7 @@ form { form, .lastTimeItem, .stopwatchItem { .mat-mdc-form-field { width: 100%; - max-width: 300px; + max-width: 400px; } } @@ -160,6 +161,10 @@ mat-toolbar { height: 32px; } +.mat-mdc-tab-body-wrapper { + margin-top: 2.5em; +} + #connection-status { float: right; padding: 2px; @@ -214,6 +219,18 @@ mat-toolbar { @media only screen and (min-width: 320px) and (max-width: 767px) { font-size: 16px; } + .edit-icon { + font-size: 16px; + margin-left: 8px; + cursor: pointer; + opacity: 0; + transition: opacity 0.2s ease-in-out; + } + &:hover { + .edit-icon { + opacity: 1; + } + } } .edit { margin-bottom: 1em;