mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-28 15:21:14 +00:00
Merge branch 'main' into fix_security_link
This commit is contained in:
commit
77c04ca1db
4 changed files with 8 additions and 4 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 5d4946e598630e06b890400ca92696d533ad9edb
|
Subproject commit 91563f222284e19def549ac5247039b398c78931
|
|
@ -1,3 +1,7 @@
|
||||||
|
body {
|
||||||
|
overflow-y: scroll !important;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-expand-lg .navbar-nav .nav-link {
|
.navbar-expand-lg .navbar-nav .nav-link {
|
||||||
padding-right: 0.75rem !important;
|
padding-right: 0.75rem !important;
|
||||||
padding-left: 0.75rem !important;
|
padding-left: 0.75rem !important;
|
||||||
|
|
|
@ -653,7 +653,7 @@ export default class ContentActionDropdown extends Component<
|
||||||
: "appoint_as_mod_are_you_sure",
|
: "appoint_as_mod_are_you_sure",
|
||||||
{
|
{
|
||||||
user: getApubName(creator),
|
user: getApubName(creator),
|
||||||
community: getApubName(creator),
|
community: getApubName(community),
|
||||||
},
|
},
|
||||||
)}
|
)}
|
||||||
loadingMessage={I18NextService.i18n.t(
|
loadingMessage={I18NextService.i18n.t(
|
||||||
|
|
|
@ -97,8 +97,8 @@ class PasswordInput extends Component<PasswordInputProps, PasswordInputState> {
|
||||||
onInput={onInput}
|
onInput={onInput}
|
||||||
value={value}
|
value={value}
|
||||||
required
|
required
|
||||||
maxLength={60}
|
pattern=".{10,60}"
|
||||||
minLength={10}
|
title={I18NextService.i18n.t("invalid_password")}
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
className="btn btn-outline-dark"
|
className="btn btn-outline-dark"
|
||||||
|
|
Loading…
Reference in a new issue