-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Apply beautifier on vue, ts, scss files
- Loading branch information
1 parent
d5b6e56
commit 48ba5fa
Showing
17 changed files
with
952 additions
and
783 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,25 +1,26 @@ | ||
@import './materialdesignicons.min.css'; | ||
|
||
@font-face { | ||
font-family: MainFont; | ||
src: url('../fonts/IBMPlexSans-Medium.ttf'); | ||
font-family: MainFont; | ||
src: url('../fonts/IBMPlexSans-Medium.ttf'); | ||
} | ||
|
||
html, body { | ||
font-family: MainFont !important; | ||
html, | ||
body { | ||
font-family: MainFont !important; | ||
} | ||
|
||
|
||
.handle { | ||
cursor: move; /* fallback if grab cursor is unsupported */ | ||
cursor: grab; | ||
cursor: -moz-grab; | ||
cursor: -webkit-grab; | ||
} | ||
|
||
/* (Optional) Apply a "closed-hand" cursor during drag operation. */ | ||
.handle:active { | ||
cursor: grabbing; | ||
cursor: -moz-grabbing; | ||
cursor: -webkit-grabbing; | ||
} | ||
cursor: move; | ||
/* fallback if grab cursor is unsupported */ | ||
cursor: grab; | ||
cursor: -moz-grab; | ||
cursor: -webkit-grab; | ||
} | ||
|
||
/* (Optional) Apply a "closed-hand" cursor during drag operation. */ | ||
.handle:active { | ||
cursor: grabbing; | ||
cursor: -moz-grabbing; | ||
cursor: -webkit-grabbing; | ||
} |
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.