mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-05 16:42:29 +03:00
e138decdbb
(Works from breakpoint and down)
15 lines
208 B
SCSS
15 lines
208 B
SCSS
// Modal
|
|
|
|
// Maximize modal to cover viewport
|
|
@mixin modalFullscreen {
|
|
width: 100vw;
|
|
max-width: none;
|
|
height: 100vh;
|
|
margin: 0;
|
|
|
|
.modal-content {
|
|
border: 0;
|
|
@include border-radius(0);
|
|
}
|
|
}
|