35 lines
636 B
SCSS
35 lines
636 B
SCSS
button{
|
|
font-size: 1px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.input-group{
|
|
max-width: 100px;
|
|
}
|
|
|
|
input{
|
|
text-align: right;
|
|
}
|
|
.input-group-btn-vertical {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
display: table-cell;
|
|
}
|
|
.input-group-btn-vertical > .btn {
|
|
display: block;
|
|
float: none;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
padding: 1px;
|
|
margin-left: -1px;
|
|
position: relative;
|
|
border-radius: 0;
|
|
}
|
|
.input-group-btn-vertical > .btn:first-child {
|
|
border-top-right-radius: 4px;
|
|
}
|
|
.input-group-btn-vertical > .btn:last-child {
|
|
margin-top: -3px;
|
|
border-bottom-right-radius: 4px;
|
|
} |