import styled from 'styled-components' export const AppFrame = styled.div` font-family: system-ui, arial, sans-serif; font-size: 14px; color: #505050; background: #f1f1f1; height: 100%; display: flex; flex-direction: column; overflow: hidden; *::-webkit-scrollbar { width: 8px; } *::-webkit-scrollbar-thumb { background-color: #7f7f7f; border-radius: 1em; } `