From cfd13b7aa08a3c317977e7dadcfd6c0d4eb49e9e Mon Sep 17 00:00:00 2001 From: ilkin-overleaf <100852799+ilkin-overleaf@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:02:06 +0300 Subject: [PATCH] Merge pull request #17699 from overleaf/ii-main-style-fix-imports [web] Fix css imports within scss files GitOrigin-RevId: 991b811c80b89a68c5932dd9abe091ea79bd14f4 --- .../stylesheets/bootstrap-5/main-style.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/services/web/frontend/stylesheets/bootstrap-5/main-style.scss b/services/web/frontend/stylesheets/bootstrap-5/main-style.scss index 8bd523b597..bbbdee6a99 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/main-style.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/main-style.scss @@ -1,18 +1,18 @@ // 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'; +@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.css'; +@import '../vendor/select/select'; // Sass and CSS variables from Overleaf foundations @import 'foundations/colors';