diff --git a/dashboard/src/theme.scss b/dashboard/src/theme.scss index ef6bec354..540c3e131 100644 --- a/dashboard/src/theme.scss +++ b/dashboard/src/theme.scss @@ -1506,6 +1506,24 @@ div:hover > .picture-edit-indicator { transform: scale(1.2); } +.info-edit-indicator { + position: absolute; + top: 0; + right: 0; + border-radius: 20px; + padding: 5px; + color: $text-dark; + background-color: white; + transition: all 250ms; + cursor: pointer; +} + +.info-edit-indicator:hover { + color: white; + background: $brand-primary; + transform: scale(1.2); +} + .settings-avatar { position: relative; cursor: pointer; diff --git a/dashboard/src/views/app.html b/dashboard/src/views/app.html index 6b3c66429..bb8ca447f 100644 --- a/dashboard/src/views/app.html +++ b/dashboard/src/views/app.html @@ -701,6 +701,7 @@