overleaf/services/web/frontend/stylesheets/bootstrap-5/foundations/elevation.scss
Rebeka Dekany 285a0cae03 Merge pull request #17309 from overleaf/rd-bootstrap-5-stylelint
[web] Introducing Stylelint as the CSS linter

GitOrigin-RevId: 89ee8860cdb3a94949749577b63cde2c3dc213fb
2024-05-01 08:04:13 +00:00

18 lines
345 B
SCSS

// Cards
@mixin shadow-sm {
box-shadow: 0 2px 8px rgb(30 37 48 / 8%);
}
// Tooltips, Callouts, Dropdowns, etc.
@mixin shadow-md {
box-shadow:
0 4px 24px rgb(30 37 48 / 12%),
0 1px 4px rgb(30 37 48 / 8%);
}
// Modals, drawers
@mixin shadow-lg {
box-shadow:
0 8px 24px rgb(30 37 48 / 16%),
0 4px 8px rgb(30 37 48 / 16%);
}