Toggle option for tx flow diagram w/ query param

This commit is contained in:
Mononaut
2022-09-29 15:41:14 +00:00
parent 678977a2a0
commit 619a6bd34d
3 changed files with 129 additions and 56 deletions

View File

@@ -73,6 +73,15 @@
}
}
.box.hidden {
visibility: hidden;
height: 0px;
padding-top: 0px;
padding-bottom: 0px;
margin-top: 0px;
margin-bottom: 0px;
}
.graph-container {
position: relative;
width: 100%;
@@ -150,10 +159,33 @@
}
}
.details-button {
.details-button, .flow-toggle {
margin-top: -5px;
margin-left: 10px;
@media (min-width: 768px){
display: inline-block;
margin-top: 0px;
margin-bottom: 0px;
}
}
.subtitle-block {
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: space-between;
.title {
flex-shrink: 0;
}
.title-buttons {
flex-shrink: 1;
text-align: right;
.btn {
margin-top: 0;
margin-bottom: 8px;
margin-left: 8px;
}
}
}