"Powered by Uppy" overflows dashboard
See original GitHub issueI have an inline dashboard with proudlyDisplayPoweredByUppy: true
(= default setting).
The Uppy logo underneath the dashboard collides with the next element:
I guess this is because the CSS defines:
.uppy-Dashboard-poweredBy {
// ...
bottom: -23px !important;
// ...
}
When I manually change it to bottom: 3px !important;
in the dev tools, I get this:
Which to me looks better and respects the rest of the page more. If the ‘powered by’ logo needs to be outside the dashboard area, some additional spacing would be nice to prevent the overlap.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Dashboard - Uppy
@uppy/dashboard is a universal UI plugin for Uppy, offering several useful features: ... The "powered by Uppy" link at the bottom of the...
Read more >Uppy Dashboard options not being centered in VueJS
The options in the Uppy Dashboard when displayed are being displayed left aligned instead of it being display in center which we thought...
Read more >PQINA
Create A Fade Out Overflow Effect Using CSS Mask-Image. July 2nd, 2021 ... Integrating Uppy With Pintura Image Editor A JavaScript Image Editor....
Read more >Dropdown - Blade Components
Dropdown powered by ALpineJS and Laravel Blade View Components. ... font-semibold focus:outline-none focus:shadow-outline text-sm overflow-hidden"> <img ...
Read more >The Most Popular Bootstrap 4, Angular 8 & React Admin ...
Metronic - #1 Selling Premium Bootstrap Admin Dashboard Theme of All Time. Built with Twitter Bootstrap 4, Angular 8 & React. Trusted By...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yeah, I went with something like this, just inline
<a>
to avoid extra<div>
s. Released in patch already, let’s see if it works 😃or simply add after dashboard as like below proudlyDisplayPoweredByUppy:false,
const uppy = new Uppy().use(Dashboard, { proudlyDisplayPoweredByUppy:false, trigger: ‘#uppy-image-uploader’, inline:true }).use(XHRUpload, { endpoint: ‘’ })