-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #41 Updates redundant styles to a new container in index. I like the component not owning the styling as well. The container in index also handles flex styling on the children elements that are contained. Remove sass from prettier because it doesn't support sass 🤯 Relevant Discord Chat: found out while digging a few things that even though sass and scss are super close there's a lot less tooling and underlying architecture issues that lacks sass support :' ( I guess prettier doesn't support it; and likely because of these other underlying issues, I guess google is running the dart sass team but doesn't have time to do what we all need : ( prettier/prettier#4948 mrmlnc/vscode-scss#127 sass/dart-sass#88 Interesting long technical read though TLDR; needs to have support for ASTs which allow code tools to help code; dart has no easy way to expose it It's finally on a roadmap but then they said they won't ever get to it lol classic product things
- Loading branch information
Showing
5 changed files
with
58 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import packageInfo from '../package.json' | ||
const { version } = packageInfo | ||
|
||
const Version = () => ( | ||
<a | ||
href="https://github.com/LogicHappens/musical-conquest/releases" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
v{version} | ||
</a> | ||
) | ||
|
||
export default Version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters