File: _shiny_misc.scss

package info (click to toggle)
r-cran-bslib 0.9.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,412 kB
  • sloc: javascript: 13,349; makefile: 33; sh: 23
file content (16 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// For code inside of showcase mode
// TODO: this should probably ported to shiny itself
// if and when shiny-showcase.css is ported to sass
pre.shiny-code {
  padding: 0.5 * $spacer;
}

// BS5 changed float-left -> float-start
@if $bootstrap-version != 4 {
  .float-left {
    @extend .float-start;
  }
  .float-right {
    @extend .float-end;
  }
}