2018-04-16 00:33:54 +00:00
|
|
|
.settings__account {
|
2018-10-28 02:02:00 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2018-03-23 00:01:42 +00:00
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
grid-template-columns: 1fr;
|
2018-04-16 00:33:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&__section {
|
|
|
|
margin: 5px;
|
2018-03-23 00:01:42 +00:00
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&--confirm {
|
|
|
|
grid-column: 1 / span 2;
|
2018-03-23 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
grid-column: 1 / 1;
|
2018-03-23 00:01:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&__item {
|
|
|
|
padding-bottom: 5px;
|
2018-04-16 00:33:54 +00:00
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&:not(:last-child) {
|
|
|
|
border-bottom: 1px solid #222;
|
2018-04-16 00:33:54 +00:00
|
|
|
}
|
2018-03-23 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2018-10-28 02:02:00 +00:00
|
|
|
font-size: .9em;
|
|
|
|
line-height: 1.8em;
|
2018-03-23 00:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2018-10-28 02:02:00 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2018-03-23 00:01:42 +00:00
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 5px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2018-03-23 00:01:42 +00:00
|
|
|
|
2018-10-28 02:02:00 +00:00
|
|
|
&__button {
|
|
|
|
margin: 0 2px;
|
2018-03-23 00:01:42 +00:00
|
|
|
}
|
|
|
|
}
|