-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from fosslife/master
release v3.3.0
- Loading branch information
Showing
12 changed files
with
177 additions
and
152 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
module.exports = { | ||
semi: true, | ||
trailingComma: "es5", | ||
singleQuote: false, | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,33 @@ | ||
.active { | ||
font-style: normal; | ||
font-weight: bold; | ||
color: light-dark(var(--mantine-color-gray-8), var(--mantine-color-gray-2)); | ||
background-color: light-dark( | ||
var(--mantine-color-gray-3), | ||
var(--mantine-color-gray-8) | ||
); | ||
} | ||
|
||
.row { | ||
cursor: pointer; | ||
border-radius: 4px; | ||
color: light-dark(black, var(--mantine-color-gray-2)); | ||
padding-inline: 10px; | ||
user-select: none; | ||
} | ||
|
||
.row:hover { | ||
color: light-dark(var(--mantine-color-gray-8), var(--mantine-color-blue-0)); | ||
background-color: light-dark( | ||
var(--mantine-color-gray-3), | ||
var(--mantine-color-gray-8) | ||
); | ||
|
||
.pinIcon { | ||
visibility: visible; | ||
} | ||
} | ||
|
||
.pinIcon { | ||
visibility: hidden; | ||
} |
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
Oops, something went wrong.