mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 19:23:55 +00:00
@uppy/examples: Add new examples (#5942)
Had to create a new PR since after the 5.0 merge, #5818 was throwing errors. ## Examples Added - **React Router v7** - Uppy Dashboard with Tus, XHR, and Transloadit , tus server implemented using react-router/express adapter , rest using regular resource routes - This still doesn't have hot reloading in the dev server though , can be added through nodemon - **Next.js** - Uppy Dashboard with Tus, XHR, and Transloadit - **Angular** - Uppy Dashboard and Dashboard Modal with Tus
This commit is contained in:
parent
fc3e483fcb
commit
567be4efab
56 changed files with 8507 additions and 3533 deletions
|
|
@ -1,3 +1,19 @@
|
|||
/* You can add global styles to this file, and also import other style files */
|
||||
@import "@uppy/core/dist/style.css";
|
||||
@import "@uppy/dashboard/dist/style.css";
|
||||
/* Global styles for the Angular Uppy example */
|
||||
@import "@uppy/core/css/style.css";
|
||||
@import "@uppy/dashboard/css/style.css";
|
||||
@import "@uppy/webcam/css/style.css";
|
||||
@import "@uppy/drag-drop/css/style.css";
|
||||
@import "@uppy/status-bar/css/style.css";
|
||||
|
||||
/* Global reset and base styles */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
||||
min-height: 100vh;
|
||||
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue