Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 76x | import { makeStyles } from "@repo/ui/themes/makeStyles";
import { textStyles } from "@repo/ui/themes/typography";
export const useStyles = makeStyles((theme) => ({
bubbleContainer: {
gap: 12,
maxWidth: "90%",
width: "100%",
alignSelf: "flex-start",
},
bubbleContainerWide: {
gap: 12,
maxWidth: "90%",
width: "100%",
alignSelf: "flex-start",
},
emptyStreamingContainer: {
paddingVertical: 8,
paddingHorizontal: 4,
maxWidth: "90%",
width: "100%",
alignSelf: "flex-start",
},
blockText: {
...textStyles.content.regular,
fontSize: 15,
color: theme.colors.text.primary,
lineHeight: 22,
},
disabledSendBtn: {
opacity: 0.3,
},
}));
|