mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-09-13 22:32:26 +03:00

Some checks are pending
Deploy to Netlify (dev) / Deploy to Netlify (push) Waiting to run
41 lines
712 B
TypeScript
41 lines
712 B
TypeScript
import { style } from '@vanilla-extract/css';
|
|
import { config, toRem } from 'folds';
|
|
|
|
export const ReplyBend = style({
|
|
flexShrink: 0,
|
|
});
|
|
|
|
export const ThreadIndicator = style({
|
|
opacity: config.opacity.P300,
|
|
|
|
selectors: {
|
|
'button&': {
|
|
cursor: 'pointer',
|
|
},
|
|
':hover&': {
|
|
opacity: config.opacity.P500,
|
|
},
|
|
},
|
|
});
|
|
|
|
export const Reply = style({
|
|
marginBottom: toRem(1),
|
|
minWidth: 0,
|
|
maxWidth: '100%',
|
|
minHeight: config.lineHeight.T300,
|
|
selectors: {
|
|
'button&': {
|
|
cursor: 'pointer',
|
|
},
|
|
},
|
|
});
|
|
|
|
export const ReplyContent = style({
|
|
opacity: config.opacity.P300,
|
|
|
|
selectors: {
|
|
[`${Reply}:hover &`]: {
|
|
opacity: config.opacity.P500,
|
|
},
|
|
},
|
|
});
|