Fix overflow-x

main
Jake Dexheimer 7 years ago committed by Jake Dexheimer
parent 0e6543367e
commit bb38cd1d63

@ -92,8 +92,6 @@ class ColorPicker extends React.Component {
.colorpicker-picker > :global(div > div:nth-child(3) > div:nth-child(12) > input) { .colorpicker-picker > :global(div > div:nth-child(3) > div:nth-child(12) > input) {
background: rgba(255, 255, 255, 0.165) !important; background: rgba(255, 255, 255, 0.165) !important;
height: 30px !important;
width: 108px !important;
color: #fff !important; color: #fff !important;
} }

@ -19,8 +19,6 @@ export default ({ children, enableHeroText }) => (
justify-content: center; justify-content: center;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
min-width: 848px;
min-height: 704px;
} }
`}</style> `}</style>
</div> </div>

@ -68,8 +68,9 @@ export default () =>
font-style: normal; font-style: normal;
text-transform: initial; text-transform: initial;
letter-spacing: initial; letter-spacing: initial;
overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
min-width: 848px;
min-height: 704px;
} }
* { box-sizing: border-box; } * { box-sizing: border-box; }

@ -30,7 +30,7 @@ export default () =>
body { body {
font-size: var(--h4); font-size: var(--h4);
line-height: var(--lh); line-height: var(--lh);
margin: 2rem; margin: 2rem 0;
} }
h1, h2, h3 { h1, h2, h3 {

Loading…
Cancel
Save