mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4a1af0f057
Bootstrap-5 Dropdown menu component GitOrigin-RevId: 8a74f2341eebf953367ab73946d72e8aa7bd3c13
40 lines
1.3 KiB
SCSS
40 lines
1.3 KiB
SCSS
// Web fonts
|
|
@import '../../fonts/noto-sans';
|
|
@import '../../fonts/dm-mono';
|
|
@import '../../fonts/merriweather.css';
|
|
@import '../../fonts/source-code-pro.css';
|
|
@import '../../fonts/stix-two-math.css';
|
|
@import '../../fonts/noto-serif.css';
|
|
@import '../../fonts/material-symbols.css';
|
|
@import '../../fonts/font-awesome.css';
|
|
|
|
$is-overleaf-light: false;
|
|
|
|
// Vendor CSS
|
|
// TODO Bootstrap 5: Check whether this works with Bootstrap 5, and whether we can replace it
|
|
@import '../vendor/select/select.css';
|
|
|
|
// Sass and CSS variables from Overleaf foundations
|
|
@import 'foundations/colors';
|
|
@import 'foundations/spacing';
|
|
@import 'foundations/typography';
|
|
@import 'foundations/border-radius';
|
|
@import 'foundations/elevation';
|
|
|
|
// Boostrap-related
|
|
|
|
// Note that files containing Bootstrap or Sass files that interact with
|
|
// Bootstrap's Sass variable must use @import rather than @use because
|
|
// Bootstrap relies on its variables, mixins etc. all being global.
|
|
|
|
// Include Bootstrap 5 itself, plus overrides of its Sass variable
|
|
@import 'scss/bootstrap';
|
|
|
|
// Override and extend Bootstrap styles. This can include overriding CSS
|
|
// variables in the usual CSS way, and can also refer to (but not override)
|
|
// Bootstrap Sass variables.
|
|
@import 'scss/bootstrap-rule-overrides';
|
|
|
|
// Components
|
|
@import 'scss/components/dropdown-menu';
|
|
@import 'scss/components/split-button';
|