mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
- Introduced a new JSON snapshot for active circles, including details about events and statistics. - Added a script to sync the active circles snapshot from the live Logos API. - Updated package.json to include a new build step for syncing active circles. - Modified footer component to include an interactive newsletter signup form. - Adjusted various links in content to point to updated resources and initiatives. - Enhanced link validation to support same-page anchors.
46 lines
951 B
CSS
46 lines
951 B
CSS
@import 'tailwindcss';
|
|
@import '@acid-info/logos-tokens/theme.css';
|
|
|
|
/* Scan workspace UI package so its Tailwind classes are emitted. */
|
|
@source "../../../packages/ui/src/**/*.{ts,tsx}";
|
|
|
|
/* Custom breakpoint for the 1440px desktop design canvas.
|
|
Sits between xl (1280px) and 2xl (1536px). */
|
|
@theme {
|
|
--breakpoint-desktop: 1440px;
|
|
}
|
|
|
|
@layer base {
|
|
*,
|
|
::after,
|
|
::before,
|
|
::backdrop,
|
|
::file-selector-button {
|
|
border-color: var(--color-gray-01, currentColor);
|
|
}
|
|
|
|
a,
|
|
button {
|
|
outline-color: var(--color-brand-yellow);
|
|
}
|
|
|
|
a:focus-visible,
|
|
button:focus-visible {
|
|
outline: 2px solid;
|
|
border-radius: var(--radius-sm);
|
|
outline-color: var(--color-brand-yellow);
|
|
}
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
-webkit-font-smoothing: antialiased;
|
|
touch-action: manipulation;
|
|
text-rendering: optimizelegibility;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-brand-off-white);
|
|
color: var(--color-brand-dark-green);
|
|
}
|