Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jul 7, 2024
1 parent dabecb6 commit b53cef9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/web/workspace/src/ui/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const utility = {
overflow: "hidden",
whiteSpace: "nowrap",
textOverflow: "ellipsis",
} satisfies CSSProperties;
};
},
stack(space: keyof (typeof theme)["space"]) {
return {
Expand All @@ -20,24 +20,24 @@ export const utility = {
return {
display: "flex",
gap: theme.space[space],
} satisfies CSSProperties;
};
},

text: {
line: {
overflow: "hidden",
whiteSpace: "nowrap",
textOverflow: "ellipsis",
} satisfies CSSProperties,
},
label: {
fontWeight: 500,
letterSpacing: 0.5,
textTransform: "uppercase",
fontFamily: theme.font.family.code,
} satisfies CSSProperties,
},
pre: {
whiteSpace: "pre-wrap",
overflowWrap: "anywhere",
} satisfies CSSProperties,
},
},
};

0 comments on commit b53cef9

Please sign in to comment.