2023-10-06 13:44:06 +11:00
|
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
|
import { config, toRem } from 'folds';
|
|
|
|
|
|
2024-05-31 19:49:46 +05:30
|
|
|
export const ReplyBend = style({
|
|
|
|
|
flexShrink: 0,
|
|
|
|
|
});
|
|
|
|
|
|
2023-10-06 13:44:06 +11:00
|
|
|
export const Reply = style({
|
|
|
|
|
marginBottom: toRem(1),
|
|
|
|
|
minWidth: 0,
|
|
|
|
|
maxWidth: '100%',
|
|
|
|
|
minHeight: config.lineHeight.T300,
|
2024-05-31 19:49:46 +05:30
|
|
|
selectors: {
|
|
|
|
|
'button&': {
|
|
|
|
|
cursor: 'pointer',
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-10-06 13:44:06 +11:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const ReplyContent = style({
|
|
|
|
|
opacity: config.opacity.P300,
|
|
|
|
|
|
|
|
|
|
selectors: {
|
|
|
|
|
[`${Reply}:hover &`]: {
|
|
|
|
|
opacity: config.opacity.P500,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|