mirror of
https://github.com/documenso/documenso.git
synced 2026-07-06 19:15:01 +10:00
138d663c25
Merge origin/main into feat/external-2fa-codes. Resolve formatting conflicts caused by biome rollout; preserve both feature streams: PR's external 2FA token + signing-session 2FA proof additions plus main's RateLimit/RecipientExpired/signingReminders/date-auto-insert. In complete-document-with-token.ts, drop the duplicate early field-fetching block introduced when main moved that logic later with date auto-insert support; keep the EXTERNAL_TWO_FACTOR_AUTH check using derivedRecipientActionAuth.
72 lines
1.7 KiB
CSS
72 lines
1.7 KiB
CSS
@import "@documenso/ui/styles/theme.css";
|
|
|
|
/* Inter Variable Fonts */
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/inter-variablefont_opsz,wght.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Inter Italic Variable Fonts */
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/inter-italic-variablefont_opsz,wght.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Caveat Variable Font */
|
|
@font-face {
|
|
font-family: "Caveat";
|
|
src: url("/fonts/caveat-variablefont_wght.ttf") format("truetype-variations");
|
|
font-weight: 400 600;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Noto Sans";
|
|
src: url("/fonts/noto-sans.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Korean noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Korean";
|
|
src: url("/fonts/noto-sans-korean.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Japanese noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Japanese";
|
|
src: url("/fonts/noto-sans-japanese.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Chinese noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Chinese";
|
|
src: url("/fonts/noto-sans-chinese.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--font-sans: "Inter";
|
|
--font-signature: "Caveat";
|
|
--font-noto: "Noto Sans", "Noto Sans Korean", "Noto Sans Japanese", "Noto Sans Chinese";
|
|
}
|
|
}
|