26 lines
415 B
Plaintext
26 lines
415 B
Plaintext
.container {
|
|
padding: 16px;
|
|
}
|
|
|
|
.contentContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1;
|
|
gap: 8px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.editorContainer {
|
|
width: 100%;
|
|
max-width: 794px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #fff;
|
|
padding: 20px 50px 50px 50px;
|
|
box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
|
|
} |