mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-09 06:01:17 +00:00
cfd13b7aa0
[web] Fix css imports within scss files GitOrigin-RevId: 991b811c80b89a68c5932dd9abe091ea79bd14f4
31 lines
1,020 B
SCSS
31 lines
1,020 B
SCSS
// Web fonts
|
|
@import '../../fonts/noto-sans';
|
|
@import '../../fonts/dm-mono';
|
|
@import '../../fonts/merriweather';
|
|
@import '../../fonts/source-code-pro';
|
|
@import '../../fonts/stix-two-math';
|
|
@import '../../fonts/noto-serif';
|
|
@import '../../fonts/material-symbols';
|
|
@import '../../fonts/font-awesome';
|
|
|
|
$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';
|
|
|
|
// 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 and extend Bootstrap styles.
|
|
@import 'bootstrap';
|