Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit e01b42d

Browse files
author
FerranAD
committed
fix(add-note): fix content placement
1 parent 6d6a314 commit e01b42d

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

  • app/src/main/java/com/eps/todoturtle/note/ui

app/src/main/java/com/eps/todoturtle/note/ui/AddNote.kt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ fun AddNoteMenu(
7777
),
7878
) {
7979
if (isFormVisible) {
80-
FormContainer {
80+
FormContainer(
81+
modifier = Modifier
82+
.padding(20.dp)
83+
.offset(x = 20.dp)
84+
.fillMaxWidth(),
85+
) {
8186
QuickAddNoteForm(
82-
modifier = Modifier
83-
.padding(16.dp)
84-
.fillMaxWidth(),
8587
onCloseClick = {
8688
isFormVisible = false
8789
onCancelClick()

0 commit comments

Comments
 (0)