diff --git a/src/base-container/components/default-layout/LargeLayout.jsx b/src/base-container/components/default-layout/LargeLayout.jsx index 75d3b8b829..7ab6e1604b 100644 --- a/src/base-container/components/default-layout/LargeLayout.jsx +++ b/src/base-container/components/default-layout/LargeLayout.jsx @@ -11,8 +11,8 @@ const LargeLayout = () => { const { formatMessage } = useIntl(); return ( -
-
+
+
{getConfig().SITE_NAME} @@ -31,13 +31,6 @@ const LargeLayout = () => {
-
- - - - - -
); }; diff --git a/src/sass/_style.scss b/src/sass/_style.scss index c62fc3e759..4024efd202 100644 --- a/src/sass/_style.scss +++ b/src/sass/_style.scss @@ -457,3 +457,18 @@ select.form-control { .pgn__form-control-decorator-trailing { right: 0 !important; } + +.authn-container { + position: relative; + + &:before { + content: ""; + position: absolute; + top: 0; + right: 0; + bottom: 0; + width: 140px; + background-color: #fff; + clip-path: polygon(101% 0%, 0% 100%, 101% 100%); + } +}