mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 05:33:44 +08:00
33 lines
478 B
SCSS
33 lines
478 B
SCSS
|
.poll-ui-builder-modal {
|
||
|
.modal-inner-container {
|
||
|
width: 600px;
|
||
|
}
|
||
|
|
||
|
.modal-body {
|
||
|
max-height: unset;
|
||
|
}
|
||
|
|
||
|
.poll-number {
|
||
|
margin-right: 10px;
|
||
|
|
||
|
&:last-of-type {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.options {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.column {
|
||
|
display: inline-block;
|
||
|
width: calc(50% - 10px);
|
||
|
}
|
||
|
|
||
|
.d-editor-preview {
|
||
|
margin-top: 5px;
|
||
|
padding-top: 5px;
|
||
|
border-top: 1px solid var(--primary-low);
|
||
|
}
|
||
|
}
|