1// Derives from BS3 SASS, but modified to inherit from BS4 vars
2// https://github.com/rstudio/bslib/blob/04925e1/inst/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss#L1
3.well {
4  @extend .card;
5  display: block;
6  background-color: $well-bg;
7  color: $well-color;
8  padding: $card-spacer-x;
9  @include border-radius($border-radius)
10}
11
12// Sizes
13.well-lg {
14  padding: 1.5 * $spacer;
15  @include border-radius($border-radius-lg);
16}
17.well-sm {
18  padding: 0.5 * $spacer;
19  @include border-radius($border-radius-sm);
20}
21
22// For wellPanel() inside absolutePanel()
23.draggable .well {
24  background-color: opaque($body-bg, $well-bg);
25}
26