diff --git a/packages/docs/components/Modal.md b/packages/docs/components/Modal.md
index e8b2245e7..1cf4758a0 100644
--- a/packages/docs/components/Modal.md
+++ b/packages/docs/components/Modal.md
@@ -44,7 +44,10 @@ The component supports the W3C ARIA APG [Dialog (Modal) Pattern](https://www.w3.
| component | Component to be injected.
Close the component by emitting a 'close' event — `$emit('close')` | Component | - | |
| content | Text content, unnecessary when default slot is used | string | - | |
| events | Events to be binded to the injected component | {} | - | |
-| fullScreen | Display modal as full screen | boolean | - | false |
+| fullheight | Display modal in fullheight | boolean | - | false |
+| fullscreen | Display modal in fullwidth and fullheight | boolean | - | false |
+| fullwidth | Display modal in fullwidth | boolean | - | false |
+| height | Height of the modal | Numberish | - |
modal: {
height: undefined
} |
| iconPack | Icon pack to use | string | `mdi`, `fa`, `fas and any other custom icon pack` | modal: {
iconPack: undefined
} |
| mobileBreakpoint | Mobile breakpoint as `max-width` value | string | - | modal: {
mobileBreakpoint: undefined
} |
| overlay | Show an overlay | boolean | - | modal: {
overlay: true
} |
@@ -52,7 +55,7 @@ The component supports the W3C ARIA APG [Dialog (Modal) Pattern](https://www.w3.
| props | Props to be binded to the injected component | any | - | |
| teleport | Append the component to another part of the DOM.modal: {
teleport: false
} |
| trapFocus | Trap focus inside the modal | boolean | - | modal: {
trapFocus: true
} |
-| width | Width of the Modal | Numberish | - | modal: {
width: 960
} |
+| width | Width of the modal | Numberish | - | modal: {
width: undefined
} |
### Events
diff --git a/packages/oruga/src/components/modal/Modal.vue b/packages/oruga/src/components/modal/Modal.vue
index 252b19eaf..3ac40d2d1 100644
--- a/packages/oruga/src/components/modal/Modal.vue
+++ b/packages/oruga/src/components/modal/Modal.vue
@@ -41,11 +41,14 @@ defineOptions({
const props = withDefaults(defineProps
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
diff --git a/packages/oruga/src/components/modal/props.ts b/packages/oruga/src/components/modal/props.ts
index 951e83eaf..c5ebe3dcf 100644
--- a/packages/oruga/src/components/modal/props.ts
+++ b/packages/oruga/src/components/modal/props.ts
@@ -7,16 +7,22 @@ export type ModalProps