material-apex icon indicating copy to clipboard operation
material-apex copied to clipboard

Full width

Open aspcsharp9 opened this issue 4 years ago • 2 comments

Hi,

Is it possible set full width region container on the page eg.

full_w

aspcsharp9 avatar Oct 05 '20 07:10 aspcsharp9

Yes, there is a page level template option to remove the page container margin.

On Mon., Oct. 5, 2020, 03:13 aspcsharp9, [email protected] wrote:

Hi,

Is it possible set full width of page eg.

[image: full_w] https://user-images.githubusercontent.com/15157982/95049893-ee983b00-06ea-11eb-9afd-4f4ca5d1a4f0.png

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/vincentmorneau/material-apex/issues/381, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABJEHO2IKIORXZVA5XGJB33SJFWYBANCNFSM4SEJWRMA .

vincentmorneau avatar Oct 05 '20 12:10 vincentmorneau

you can use css as below to do so

By default these will be set to smaller value.

.container, .main-container .ma-main-container, .ma-region.container{
    width: 100% !important;
    
}

.container, .main-container .ma-main-container, .ma-region.container{
    max-width: 100% !important;
}

jainabhs avatar Jan 30 '21 21:01 jainabhs