mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
1b42fb7a89
Migrate symbol palette to Bootstrap 5 GitOrigin-RevId: c014199d1266092a3cdf7df6e98a9a4d5f318c15
36 lines
1.2 KiB
SCSS
36 lines
1.2 KiB
SCSS
// Web fonts
|
|
@import '../../fonts/noto-sans/noto-sans.css';
|
|
@import '../../fonts/dm-mono/dm-mono.css';
|
|
@import '../../fonts/merriweather/merriweather.css';
|
|
@import '../../fonts/source-code-pro/source-code-pro.css';
|
|
@import '../../fonts/STIXTwoMath/stix-two-math.css';
|
|
@import '../../fonts/noto-serif/noto-serif.css';
|
|
@import '../../fonts/material-symbols/material-symbols.css';
|
|
@import '../../fonts/font-awesome/font-awesome.css';
|
|
|
|
// Vendor CSS
|
|
// TODO Bootstrap 5: Check whether this works with Bootstrap 5, and whether we can replace it
|
|
@import '../vendor/select/select';
|
|
|
|
// Boostrap-related
|
|
|
|
// Note that files containing Bootstrap or Sass files that interact with
|
|
// Bootstrap's Sass variables must use @import rather than @use because
|
|
// Bootstrap relies on its variables, mixins etc. all being global.
|
|
|
|
// Include Bootstrap 5 itself, plus overrides and extend Bootstrap styles.
|
|
@import 'base/bootstrap';
|
|
|
|
// Typography-related
|
|
@import 'base/typography';
|
|
|
|
// Link styles
|
|
@import 'base/links';
|
|
@import 'base/base';
|
|
|
|
// Page layout that isn't related to a particular component or page
|
|
@import 'base/layout';
|
|
|
|
// Module styles
|
|
// TODO: find a way for modules to add styles dynamically
|
|
@import 'modules/all';
|