24 lines
418 B
Plaintext
24 lines
418 B
Plaintext
.sheet {
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.sheet-content {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.editor {
|
|
height: 100%
|
|
}
|
|
}
|
|
.long-input {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
min-width: 100%;
|
|
}
|
|
.short-input {
|
|
width: 50px;
|
|
max-width: 50px;
|
|
min-width: 50px;
|
|
}
|
|
} |