Add Bootstrap and Bootstrap Icons files

This commit is contained in:
Will Faught
2023-02-17 10:42:30 -08:00
parent 48cde6fd36
commit 994a9f73fd
2329 changed files with 82905 additions and 44 deletions

View File

@@ -0,0 +1,14 @@
// Shared between modals and offcanvases
@mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {
position: fixed;
top: 0;
left: 0;
z-index: $zindex;
width: 100vw;
height: 100vh;
background-color: $backdrop-bg;
// Fade for backdrop
&.fade { opacity: 0; }
&.show { opacity: $backdrop-opacity; }
}