Files

46 lines
810 B
SCSS
Raw Permalink Normal View History

2018-03-22 14:30:51 -04:00
@import 'common/sass/variables';
2018-05-21 18:10:51 -05:00
@import 'common/sass/variables/spacing';
@import 'common/sass/variables/colors';
2018-03-22 14:30:51 -04:00
.AddressInput {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
&-input {
2018-05-21 18:10:51 -05:00
position: relative;
2018-03-22 14:30:51 -04:00
flex-grow: 1;
2018-05-21 18:10:51 -05:00
&-with-label {
margin-bottom: $space-lg;
}
&-label {
position: absolute;
width: 100%;
2018-06-27 00:51:42 -04:00
color: color(brand-success-darker);
2018-05-21 18:10:51 -05:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2018-03-22 14:30:51 -04:00
}
&-identicon {
2018-05-21 18:10:51 -05:00
padding-top: $space-md;
2018-03-22 14:30:51 -04:00
transform: translateX(20%);
@media (max-width: $screen-sm) {
padding-top: 1.5rem;
.Identicon {
width: 3.4rem !important;
height: 3.4rem !important;
}
}
2018-05-21 18:10:51 -05:00
@media (max-width: 380px) {
display: none;
}
2018-03-22 14:30:51 -04:00
}
}