Increase size (width) of Lightning Web Component Quick Action Modal Popup Salesforce
<aura:component controller="PaymentCalculatorController" implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >
<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>
<aura:attribute name="recordId" type="String" />
<aura:attribute name="actionWidth" type="string" default="75"/>
<aura:html tag="style">
.slds-modal__container{
width: 100% !important;
max-width: {!v.actionWidth}rem !important;
}
.slds-modal__footer {
display: none;
}
</aura:html>
</aura: component >