-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CSS overhaul of data view * change category positions * sorting data * clickable class * Change category io in data view * Removed logs
- Loading branch information
1 parent
51bf434
commit 92c6334
Showing
8 changed files
with
145 additions
and
13 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
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import { library } from "@fortawesome/fontawesome-svg-core" | ||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' | ||
import { faTrash, faCirclePlus, faRightLeft, faBars, faPenToSquare, faBroom, faSpinner } from "@fortawesome/free-solid-svg-icons" | ||
import { faTrash, faCirclePlus, faRightLeft, faBars, faPenToSquare, faBroom, faSpinner, faSort, faBan, faCircleArrowRight, faCircleArrowLeft, faCircleCheck, faCircleXmark } from "@fortawesome/free-solid-svg-icons" | ||
// import { ... } from '@fortawesome/free-regular-svg-icons' | ||
|
||
library.add(faTrash, faCirclePlus, faRightLeft, faBars, faPenToSquare, faBroom, faSpinner) | ||
library.add(faTrash, faCirclePlus, faRightLeft, faBars, faPenToSquare, faBroom, faSpinner, faSort, faBan, faCircleArrowRight, faCircleArrowLeft, faCircleCheck, faCircleXmark) | ||
|
||
export default FontAwesomeIcon |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
@import 'SideMenu'; | ||
@import 'Effects'; | ||
@import 'Animations'; | ||
@import 'Utils'; |
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,3 @@ | ||
.clickable { | ||
cursor: pointer; | ||
} |
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