🐛 Fix AvatarSelector shift (Login)

This commit is contained in:
2023-08-21 21:29:09 +02:00
parent 5120f1e74f
commit f79bf329a5
2 changed files with 4 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ pub fn Login<'a>(cx: Scope, rw_store: &'a UseRw<Store>) -> Element {
div { div {
class: ClassName::BODY, class: ClassName::BODY,
div { div {
class: ClassName::AVATAR_SELECTOR, class: ClassName::AVATAR_SELECTOR_CONTAINER,
AvatarSelector {}, AvatarSelector {},
}, },

View File

@@ -33,9 +33,11 @@
border-color: red; border-color: red;
} }
.avatarSelector { .avatar-selector-container {
height: 30%; height: 30%;
width: 100%; width: 100%;
padding-left: 25%;
} }