Ensure submitting and success screen icon messages are at the same position, ensure no overflow at the bottom of the page, try to hide overflow peeking through on the right side of the page.

Этот коммит содержится в:
Conor Macpherson
2023-04-18 17:03:20 -04:00
родитель 7bdc5a4a39
Коммит c9e081d0b1
3 изменённых файлов: 12 добавлений и 1 удалений

Просмотреть файл

@@ -13,6 +13,8 @@ import {ValueOf} from '@mattermost/types/utilities';
import CreditCardSvg from 'components/common/svg_images_components/credit_card_svg';
import IconMessage from 'components/purchase_modal/icon_message';
import './submitting_page.scss'
function useConvertProgressToWaitingExplanation(progress: ValueOf<typeof SelfHostedSignupProgress>, planName: string): React.ReactNode {
const intl = useIntl();
switch (progress) {

Просмотреть файл

@@ -0,0 +1,6 @@
.submitting {
overflow: hidden;
.processing {
margin-top: 163px;
}
}

Просмотреть файл

@@ -15,5 +15,8 @@
}
.self_hosted_expansion_success {
margin-top: 163px;
overflow: hidden;
.selfHostedExpansionModal__success {
margin-top: 163px;
}
}