hyperspace-desktop-client-w.../src/pages/Compose.styles.tsx

30 lines
687 B
TypeScript
Raw Normal View History

2019-04-04 02:01:54 +02:00
import { Theme, createStyles } from "@material-ui/core";
export const styles = (theme: Theme) => createStyles({
dialog: {
minHeight: 400
},
dialogContent: {
paddingBottom: 0
},
dialogActions: {
paddingLeft: theme.spacing.unit * 1.25
},
charsReachingLimit: {
color: theme.palette.error.main
},
warningCaption: {
height: 16,
verticalAlign: "text-bottom"
},
composeAttachmentArea: {
display: 'flex',
flexWrap: 'wrap',
justifyContent: 'space-around',
overflow: 'hidden'
},
composeAttachmentAreaGridList: {
height: 250,
width: '100%'
2019-04-04 02:01:54 +02:00
}
});