mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 18:09:09 +00:00
add databinding for editor actions and message
This commit is contained in:
parent
67fac31ab4
commit
b0c8b2378b
7 changed files with 57 additions and 16 deletions
|
@ -2,9 +2,9 @@ import { palette } from '@roleypoly/design-system/atoms/colors';
|
|||
import { fontCSS } from '@roleypoly/design-system/atoms/fonts';
|
||||
import styled, { createGlobalStyle } from 'styled-components';
|
||||
|
||||
export const Content = styled.div<{ small?: boolean }>`
|
||||
export const Content = styled.div<{ small?: boolean; double?: boolean }>`
|
||||
margin: 0 auto;
|
||||
margin-top: 50px;
|
||||
margin-top: ${(props) => (props.double ? '100px' : '50px')};
|
||||
width: ${(props) => (props.small ? '960px' : '1024px')};
|
||||
max-width: 98vw;
|
||||
max-height: calc(100vh - 50px);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue