uppy/examples/angular/src/styles.css
Prakash 567be4efab
@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
2025-09-10 21:46:19 +05:30

19 lines
511 B
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;
}