You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
343 B
29 lines
343 B
#samp-ctrl {
|
|
display: flex;
|
|
padding: dist(-2);
|
|
|
|
flex-direction: row;
|
|
@include media($phone) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
|
|
> div {
|
|
margin: dist(-2);
|
|
}
|
|
|
|
label {
|
|
line-height: 1.8;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input {
|
|
width: 150px;
|
|
|
|
@include media($phone) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|