31 lines
392 B
CSS
31 lines
392 B
CSS
html, body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.PageContainer, .Page {
|
|
height: 100%;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
}
|
|
|
|
.overflow-auto::-webkit-scrollbar {
|
|
width: 0px;
|
|
background: transparent;
|
|
}
|
|
|
|
button {
|
|
background-color: transparent;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
button,
|
|
button:active,
|
|
button:focus {
|
|
outline: none;
|
|
}
|