@import url('./root.css');
@import url('./frame.css');
@import url('./button.css');
@import url('./screen.css');
@import url('./menu.css');

html {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0px;
    font-family: sans-serif;
    overflow: hidden;
    background: #fff;
}

button, textarea, input, select{
    outline: none;
}

.AppIframe{
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.clickable{
    cursor: pointer;
}

.clickable:active{
    fill: var(--colorControlHighlight);
}