Add style for draggable

This commit is contained in:
Gigiaj 2025-06-17 13:06:32 -05:00
parent 1ec2c2d27b
commit 3e814fc294

View file

@ -0,0 +1,29 @@
import { style } from '@vanilla-extract/css';
export const container = style({
position: 'relative',
overflow: 'hidden',
width: '100%',
});
export const iconContainer = style({
position: 'absolute',
top: 0,
bottom: 0,
right: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
width: '150px',
});
export const messageContent = style({
position: 'relative',
touchAction: 'pan-y',
backgroundColor: 'var(--folds-color-Background-Main)',
width: '100%',
});
export const icon = style({
position: 'absolute',
});