ProzillaOS/src/components/applications/text-editor/TextEditor.module.css
2023-07-31 20:51:12 +02:00

34 lines
No EOL
527 B
CSS

.Container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
text-align: start;
}
.Container p,
.Container div,
.Container span,
.Container textarea {
font-size: 1em;
}
.View {
width: 100%;
height: 100%;
padding: 1rem;
color: var(--foreground-color-a);
background-color: var(--background-color-c);
border: none;
outline: none;
font-size: 1rem;
font-family: var(--body-font-family);
resize: none;
overflow: auto;
}
.View img {
max-width: 100%;
object-fit: cover;
border-radius: 0.5rem;
}