settings adaptive
This commit is contained in:
parent
6086026617
commit
e90ab69e5f
@ -97,7 +97,7 @@ export const PartnerSettings = () => {
|
|||||||
<div className="partner-settings__login">
|
<div className="partner-settings__login">
|
||||||
<h3 className="settings__title">Вход в систему</h3>
|
<h3 className="settings__title">Вход в систему</h3>
|
||||||
|
|
||||||
<p className="settings__lable-first">Изменение логина</p>
|
<p className="settings__label">Изменение логина</p>
|
||||||
<div className="settings__input">
|
<div className="settings__input">
|
||||||
<input
|
<input
|
||||||
className={inputsError.name ? "warning" : ""}
|
className={inputsError.name ? "warning" : ""}
|
||||||
@ -119,7 +119,7 @@ export const PartnerSettings = () => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className="settings__lable-second">Изменение пароля</p>
|
<p className="settings__label">Изменение пароля</p>
|
||||||
<div className="settings__input oldPassword">
|
<div className="settings__input oldPassword">
|
||||||
<input
|
<input
|
||||||
className={inputsError.password ? "warning" : ""}
|
className={inputsError.password ? "warning" : ""}
|
||||||
@ -185,26 +185,26 @@ export const PartnerSettings = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="partner-settings__report">
|
<div className="partner-settings__report">
|
||||||
<h3 className="settings__title">Документы и отчеты</h3>
|
<h3 className="settings__title">Документы и отчеты</h3>
|
||||||
<p className="settings__lable-first">Изменить провадера ЭДО</p>
|
<p className="settings__label">Изменить провадера ЭДО</p>
|
||||||
|
|
||||||
<div className="partner-settings__logo">
|
<div className="partner-settings__logo">
|
||||||
<div>
|
<div>
|
||||||
<label className="partner-settings__label-first">
|
<label className="partner-settings__label">
|
||||||
<img src={astral}></img>
|
<img src={astral}></img>
|
||||||
<input type="checkbox" />
|
<input type="checkbox" />
|
||||||
<span className="checkbox__first"></span>
|
<span className="checkbox"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label className="partner-settings__label-second">
|
<label className="partner-settings__label">
|
||||||
<img src={kontur}></img>
|
<img src={kontur}></img>
|
||||||
<input type="checkbox" />
|
<input type="checkbox" />
|
||||||
<span className="checkbox__second"></span>
|
<span className="checkbox"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className="settings__lable-second">
|
<p className="settings__label">
|
||||||
Изменение названия компании
|
Изменение названия компании
|
||||||
</p>
|
</p>
|
||||||
<div className="settings__input">
|
<div className="settings__input">
|
||||||
|
@ -22,20 +22,11 @@
|
|||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__lable {
|
&__label {
|
||||||
&-first,
|
font-size: 15px;
|
||||||
&-second {
|
line-height: 18px;
|
||||||
font-size: 15px;
|
color: #000000;
|
||||||
line-height: 18px;
|
margin: 15px 0 10px 0;
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-first {
|
|
||||||
margin: 39px 0 10px 0;
|
|
||||||
}
|
|
||||||
&-second {
|
|
||||||
margin: 15px 0 10px 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__input {
|
&__input {
|
||||||
@ -46,7 +37,6 @@
|
|||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
background: #eff2f7;
|
background: #eff2f7;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
width: 373px;
|
|
||||||
height: 35px;
|
height: 35px;
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
@ -75,11 +65,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__buttons {
|
&__buttons {
|
||||||
width: 87%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: flex-start;
|
||||||
margin: 36px 0 30px 0;
|
gap: 20px;
|
||||||
|
margin: 30px 0 20px;
|
||||||
|
|
||||||
&-cancel,
|
&-cancel,
|
||||||
&-save {
|
&-save {
|
||||||
@ -113,7 +104,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 570px) {
|
@media (max-width: 800px) {
|
||||||
&__input {
|
&__input {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
}
|
}
|
||||||
@ -123,6 +114,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
flex-direction: column-reverse;
|
flex-direction: column-reverse;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
gap: 0px;
|
||||||
|
|
||||||
&-save {
|
&-save {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
@ -132,13 +124,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.checkbox {
|
.checkbox {
|
||||||
&__first {
|
margin: 0px 0 0 20px;
|
||||||
margin: 0px 0 0 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__second {
|
|
||||||
margin: 0px 20px 0 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.partner-settings {
|
.partner-settings {
|
||||||
@ -147,7 +133,7 @@
|
|||||||
&__body {
|
&__body {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-around;
|
||||||
margin-top: 27px;
|
margin-top: 27px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,15 +183,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
&-first,
|
display: flex;
|
||||||
&-second {
|
align-items: center;
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-second {
|
|
||||||
flex-direction: row-reverse;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1200px) {
|
@media (max-width: 1200px) {
|
||||||
@ -227,10 +206,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
&-second,
|
flex-direction: row;
|
||||||
&-first {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -276,16 +252,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
&-second,
|
flex-direction: row;
|
||||||
&-first {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.checkbox {
|
|
||||||
&__second {
|
|
||||||
margin: 0px 0 0 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user