Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Importing customCss after githubMarkdownCss files & and removing !important #21

Closed
EvitanRelta opened this issue Jun 12, 2022 · 0 comments
Assignees
Labels
improvement Additions to existing features

Comments

@EvitanRelta
Copy link
Owner

VSCode has updated their Typescript version, which added the feature to prevent organizing specific imports (like CSS overwriting files that needs to be imported last).

Quote from the Typescript PR:

when organizing imports in each block of newline-contiguous
import c from "C";

import d from "D";
import a from "A";
import b from "B";

turns into

import c from "C";

import a from "A";
import b from "B";
import d from "D";

Thus, we can now properly import the customCss files after the githubMarkdownCss files, and remove unnecessary !important CSS property that was previously needed.

@EvitanRelta EvitanRelta added the feature New feature label Jun 12, 2022
@EvitanRelta EvitanRelta added this to the Orbital Milestone 2 milestone Jun 13, 2022
@EvitanRelta EvitanRelta self-assigned this Jun 13, 2022
@EvitanRelta EvitanRelta added improvement Additions to existing features and removed feature New feature labels Jul 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
improvement Additions to existing features
Projects
None yet
Development

No branches or pull requests

1 participant