Skip to content

Commit

Permalink
Remove extra space on top of settings tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed May 14, 2024
1 parent 61181fe commit a58deac
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 201 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,6 @@ exports[`<AccountSelector /> should match snapshot 1`] = `
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 24px;
padding-bottom: 24px;
padding-left: 2px;
padding-right: 12px;
overflow-y: auto;
Expand Down Expand Up @@ -520,10 +518,6 @@ exports[`<AccountSelector /> should match snapshot 1`] = `
}
@media only screen and (max-width:768px) {
}
@media only screen and (max-width:768px) {
.c3 {
border: solid 1px #0500e2;
Expand All @@ -548,13 +542,6 @@ exports[`<AccountSelector /> should match snapshot 1`] = `
}
}
@media only screen and (max-width:768px) {
.c2 {
padding-top: 12px;
padding-bottom: 12px;
}
}
@media only screen and (max-width:768px) {
.c2 {
padding-left: 2px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ exports[`<Contacts /> should match snapshot 1`] = `
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 24px;
padding-bottom: 24px;
padding-left: 2px;
padding-right: 12px;
overflow-y: auto;
Expand Down Expand Up @@ -343,10 +341,6 @@ exports[`<Contacts /> should match snapshot 1`] = `
}
@media only screen and (max-width:768px) {
}
@media only screen and (max-width:768px) {
.c3 {
border: solid 1px #0500e2;
Expand All @@ -371,13 +365,6 @@ exports[`<Contacts /> should match snapshot 1`] = `
}
}
@media only screen and (max-width:768px) {
.c2 {
padding-top: 12px;
padding-bottom: 12px;
}
}
@media only screen and (max-width:768px) {
.c2 {
padding-left: 2px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ export const UpdatePassword = () => {
onChange={nextValue => setValue(nextValue)}
value={value}
>
<Paragraph>
<label htmlFor="currentPassword">{t('toolbar.profile.password.title', 'Set a new password')}</label>
</Paragraph>
<label htmlFor="currentPassword">{t('toolbar.profile.password.title', 'Set a new password')}</label>
<PasswordField<FormValue>
placeholder={t('toolbar.profile.password.current', 'Current password')}
inputElementId="currentPassword"
Expand Down
Loading

0 comments on commit a58deac

Please sign in to comment.