Dropzone message not in center

Wappler Version : 6.3.0 - Beta channel
Operating System : Windows 11
Server Model: NodeJS
Database Type: Mysql
Hosting Type: Local Docker

Expected behavior

The message should be centered

Actual behavior

It is quite a bit to the right.

How to reproduce

image

<div class="container">
<div class="row">
    <div class="col-4">
        <form id="form1">
            <div class="form-group mb-3">
                <input type="file" class="form-control" id="input1" name="input1" aria-describedby="input1_help" multiple="true" is="dmx-dropzone">
            </div>
        </form>
    </div>
</div>

Probably some styling on your page is affecting it. Just tested the dropzone locally, the text is centered.

I use a standard bootswatch theme (sandstone) without any modification.

image

looks like removing the margin from dmxDropzone.css:19 solves it, not sure if causing other issues though…

You can just inspect the element in dev tools/inspector and see what is causing (affecting) it.
I see some more spacing on your screenshot, which is not present in my tests.

Thanks Teodor!