mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-04 02:34:41 +00:00
14 lines
208 B
SCSS
14 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);
|
|
}
|
|
}
|