chore: overhaul infrastructure and integrate @mintel packages
Some checks failed
🧪 CI (QA) / 🧪 Quality Assurance (push) Failing after 1m3s
Some checks failed
🧪 CI (QA) / 🧪 Quality Assurance (push) Failing after 1m3s
- Restructure to pnpm monorepo (site moved to apps/web) - Integrate @mintel/tsconfig, @mintel/eslint-config, @mintel/husky-config - Implement Docker service architecture (Varnish, Directus, Gatekeeper) - Setup environment-aware Gitea Actions deployment
This commit is contained in:
44
apps/web/video/style.css
Normal file
44
apps/web/video/style.css
Normal file
@@ -0,0 +1,44 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
src: url('https://rsms.me/inter/font-files/Inter-Regular.woff2?v=3.19') format('woff2');
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
src: url('https://rsms.me/inter/font-files/Inter-Bold.woff2?v=3.19') format('woff2');
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/*
|
||||
REMOTION HARD-FREEZE
|
||||
We must disable EVERY browser-native transition and animation.
|
||||
These run on real-time and will always lag in frame-by-frame renders.
|
||||
*/
|
||||
* {
|
||||
transition: none !important;
|
||||
transition-property: none !important;
|
||||
transition-duration: 0s !important;
|
||||
transition-delay: 0s !important;
|
||||
animation: none !important;
|
||||
animation-duration: 0s !important;
|
||||
animation-delay: 0s !important;
|
||||
animation-iteration-count: 0 !important;
|
||||
animation-fill-mode: none !important;
|
||||
}
|
||||
|
||||
/* Ensure no smooth scrolling which fights Remotion */
|
||||
html {
|
||||
scroll-behavior: auto !important;
|
||||
}
|
||||
Reference in New Issue
Block a user