fix: use all available width for note creator text area #28

Merged
verbiricha merged 2 commits from fill into main 2023-01-10 16:40:20 +00:00
Showing only changes of commit 510e416f32 - Show all commits

View File

@ -12,7 +12,12 @@
max-height: 300px;
border-radius: 10px 10px 0 0;
max-width: -webkit-fill-available;
max-width: -moz-available;
max-width: fill-available;
min-width: 100%;
min-width: -webkit-fill-available;
min-width: -moz-available;
min-width: fill-available;
}
.note-creator .actions {