32 lines
882 B
TypeScript
32 lines
882 B
TypeScript
|
|
import { style } from '@vanilla-extract/css';
|
||
|
|
import { color, config, toRem } from 'folds';
|
||
|
|
|
||
|
|
// Right-side drawer that floats over the room view. 320px is wider than the
|
||
|
|
// 266px member/bookmark drawers because it hosts a media grid; on narrow
|
||
|
|
// viewports it expands to fill the screen, matching the app's other drawers.
|
||
|
|
export const MediaGalleryDrawer = style({
|
||
|
|
position: 'fixed',
|
||
|
|
top: 0,
|
||
|
|
right: 0,
|
||
|
|
bottom: 0,
|
||
|
|
width: toRem(320),
|
||
|
|
zIndex: 500,
|
||
|
|
overflow: 'hidden',
|
||
|
|
borderLeftWidth: config.borderWidth.B300,
|
||
|
|
borderLeftStyle: 'solid',
|
||
|
|
borderLeftColor: color.Surface.ContainerLine,
|
||
|
|
'@media': {
|
||
|
|
'(max-width: 750px)': {
|
||
|
|
width: '100%',
|
||
|
|
borderLeftWidth: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export const MediaGalleryHeader = style({
|
||
|
|
flexShrink: 0,
|
||
|
|
paddingRight: config.space.S200,
|
||
|
|
paddingLeft: config.space.S300,
|
||
|
|
borderBottomWidth: config.borderWidth.B300,
|
||
|
|
});
|