-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: adds ability to add an extra button and a panel (#2998)
- Loading branch information
1 parent
2fc05e8
commit 14f90bf
Showing
3 changed files
with
75 additions
and
6 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,30 @@ | ||
@keyframes fadeIn { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.flamegraphContainer { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
animation: fadeIn 1s; | ||
} | ||
|
||
.flamegraphComponent { | ||
flex-basis: 50%; | ||
flex-grow: 1; | ||
flex-shrink: 0; | ||
} | ||
|
||
.extraPanel { | ||
flex-basis: 50%; | ||
flex-grow: 1; | ||
flex-shrink: 0; | ||
|
||
margin-left: 16px; | ||
border-left: 2px solid #000; | ||
} |
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