31 lines
602 B
SCSS
31 lines
602 B
SCSS
@import "client/common.css.scss";
|
|
@import "client/screen_common.css.scss";
|
|
|
|
.react-component {
|
|
.checkbox-scroller {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
min-height: 10em;
|
|
@include border_box_sizing;
|
|
text-align:left;
|
|
border-right: 1px solid #4c4c4c;
|
|
margin-bottom:10px;
|
|
margin-top:10px;
|
|
background-color: #c5c5c5;
|
|
label {
|
|
clear: both;
|
|
color: black;
|
|
display: inline;
|
|
float: left;
|
|
}
|
|
input {
|
|
width: auto;
|
|
clear: both;
|
|
text-align: left;
|
|
float: left;
|
|
display: inline;
|
|
}
|
|
}
|
|
}
|