You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In previous version 3.3.7, there were standalone freelancer theme CSS file.
is it possible to use CDN for bootstrap5 and theme CSS as standalone file. if yes, how to do it?
The text was updated successfully, but these errors were encountered:
cbmgit
changed the title
is there a way to generate standalone boostarp.css and freelancer css?
is there a way to generate standalone freelancer css and use cdn link for bootstrap5?
Oct 15, 2021
The problem is that some of the (local) color variables set in /src/scss/_variables.scss are used to override many styles within the base bootstrap.css file. Therefore the CDN links to a bootstrap.css file with original/default colors.
However if you wanted to experiment, you could change the /src/styles.scss file line where it Imports Bootstrap to:
Then you could compile your own flavor of the Bootstrap .scss by adding this following line above the import 'variables' line to override the default colors
@import "{path-to-freelancer/src/scss/variables";
You'd have to add a link to the new bootstrap.css in the index.html file above the link to styles.css.
In previous version 3.3.7, there were standalone freelancer theme CSS file.
is it possible to use CDN for bootstrap5 and theme CSS as standalone file. if yes, how to do it?
The text was updated successfully, but these errors were encountered: