aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-04-18 22:54:38 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2023-04-26 13:01:33 +0200
commitf79131aea3cddb20856bc1041950bc728b5e86fb (patch)
tree468c719ca778c25b1be851cd6504fee0f7791af0 /core
parent75f17b60945e15effc3eea41393eef2b13937226 (diff)
downloadnextcloud-server-f79131aea3cddb20856bc1041950bc728b5e86fb.tar.gz
nextcloud-server-f79131aea3cddb20856bc1041950bc728b5e86fb.zip
fix(core): Fix profile view edit button overlapping status text
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'core')
-rw-r--r--core/src/views/Profile.vue9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/src/views/Profile.vue b/core/src/views/Profile.vue
index 4d83421673a..eda6e428463 100644
--- a/core/src/views/Profile.vue
+++ b/core/src/views/Profile.vue
@@ -540,7 +540,8 @@ $content-max-width: 640px;
grid-template-columns: unset;
&__displayname {
- margin: 100px 20px 0px;
+ margin: 80px 20px 0px!important;
+ height: 1em;
width: unset;
display: unset;
text-align: center;
@@ -549,7 +550,11 @@ $content-max-width: 640px;
&__edit-button {
width: fit-content;
display: block;
- margin: 30px auto;
+ margin: 60px auto;
+ }
+
+ &__status-text {
+ margin: 4px auto;
}
}
}