27 lines
498 B
CSS
27 lines
498 B
CSS
#memory_settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#memory_settings textarea {
|
|
font-size: calc(var(--mainFontSize) * 0.9);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
label[for="memory_frozen"],
|
|
label[for="memory_skipWIAN"] {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
label[for="memory_frozen"] input {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.memory_contents_controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
} |