Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/tangle-cloud/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ const Layout: FC<PropsWithChildren<Props>> = ({
<ShortcutsHelp open={isHelpOpen} onOpenChange={setIsHelpOpen} />

<div className="m-auto flex h-full max-w-[1448px] flex-col justify-between px-4 md:px-8 lg:px-10">
<div className="flex grow flex-col space-y-4">
<div className="flex items-center justify-between py-4">
<div className="flex grow flex-col space-y-2">
<div className="flex items-center justify-between py-3">
<div className="flex items-center space-x-4 lg:space-x-0">
<MobileSidebar />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export const InstructionCard: FC<InstructionCardProps> = ({
{steps.map((step) => {
const tone = TONE_STYLES[step.tone];
const content = (
<div className="group flex cursor-pointer items-center gap-4 rounded-lg border border-border bg-[var(--bg-elevated)]/40 p-4 transition-colors duration-200 hover:border-primary/40 hover:bg-[var(--bg-hover)]">
<div className="group flex cursor-pointer items-center gap-4 rounded-lg border border-border bg-[var(--bg-elevated)] p-4 transition-colors duration-200 hover:border-primary/40 hover:bg-[var(--bg-hover)]">
<div className="flex h-11 w-11 shrink-0 items-center justify-center rounded-lg border border-border bg-[var(--bg-card)] transition-colors duration-200 group-hover:border-primary/40">
{createElement(step.icon, {
className: `h-5 w-5 ${tone.icon}`,
Expand Down
2 changes: 1 addition & 1 deletion apps/tangle-cloud/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ body {
.tangle-cloud-shell[data-sandbox-theme='tangle'] {
color-scheme: dark;
/* prettier-ignore */
--bg-root: radial-gradient(ellipse 60% 36% at 16% 0%, rgba(79, 70, 229, 0.1), transparent), radial-gradient(ellipse 44% 30% at 84% 4%, rgba(20, 184, 166, 0.08), transparent), linear-gradient(180deg, #090b10 0%, #07080c 100%);
--bg-root: #07080c;
--bg-card: #151922;
--bg-elevated: #202737;
--bg-hover: rgba(116, 126, 194, 0.18);
Expand Down
14 changes: 7 additions & 7 deletions apps/tangle-cloud/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ export default {
// base 16 / lg 18 / xl 20) so cloud's body, subtext, tables, and buttons
// read larger and consistent. Line-heights loosened to match.
fontSize: {
xs: ['13px', { lineHeight: '1.35rem' }],
sm: ['15px', { lineHeight: '1.5rem' }],
base: ['17px', { lineHeight: '1.65rem' }],
lg: ['19px', { lineHeight: '1.7rem' }],
xl: ['22px', { lineHeight: '1.85rem' }],
'2xl': ['25px', { lineHeight: '2rem' }],
'3xl': ['30px', { lineHeight: '2.25rem' }],
xs: ['14px', { lineHeight: '1.4rem' }],
sm: ['16px', { lineHeight: '1.55rem' }],
base: ['18px', { lineHeight: '1.7rem' }],
lg: ['20px', { lineHeight: '1.75rem' }],
xl: ['24px', { lineHeight: '1.9rem' }],
'2xl': ['28px', { lineHeight: '2.1rem' }],
'3xl': ['34px', { lineHeight: '2.4rem' }],
},
backgroundImage: {
glass:
Expand Down
Loading