fix: buttons are stacked in modal window

Description:
We have stacked the buttons those come in modal window
VAN-1601
This commit is contained in:
ahtesham-quraish
2023-08-17 12:41:28 +05:00
parent 3bad4897ba
commit 825cca2d8d
2 changed files with 15 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ import { ModalDialog, ActionRow, Button } from '@edx/paragon';
import { useIntl } from '@edx/frontend-platform/i18n';
import messages from './messages';
import './index.scss';
export const ModalView = ({
isOpen,
onClose,

View File

@@ -0,0 +1,13 @@
@import "@edx/paragon/scss/core/core";
@media (max-width: 464px) {
.pgn__action-row{
flex-direction: column;
gap: 5px;
button {
width: 100%;
}
}
}