Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the size of a modal materializecss

sorry if the question is very simple but I'm new using materializeCss

As I can increase the height and width of a modal materializecss ??

like image 329
Cristian Avatar asked May 02 '16 23:05

Cristian


1 Answers

In order to set the height and width of the MaterializeCSS Modal you need to edit the CSS of

.modal { width: 75% !important ; height: 75% !important ; }  /* increase the height and width as you desire */

See more explanation as written by pihyper here: https://stackoverflow.com/a/34580086/3133641

like image 75
Tosch Avatar answered Sep 20 '22 17:09

Tosch