Skip to content
Snippets Groups Projects
Commit c6b3bc13 authored by Dennis Collaris's avatar Dennis Collaris Committed by Leonardo
Browse files

feat(vis): remake of matrixVis

parent 9a795ff6
No related branches found
Tags v1.109.1
1 merge request!156feat(vis): remake of matrixVis
Pipeline #137312 passed
g {
g.react-flow__edge g {
@apply stroke-secondary-300;
}
.matrix {
--size: 50px;
}
.axisLeft, .axisTop {
position: absolute;
left: 0;
top: 0;
backdrop-filter: blur(10px);
background: rgba(255,255,255, 0.5);
}
.axisLeft {
top: var(--size);
bottom: 0;
width: var(--size);
box-shadow: 1px 0px 0px 0px rgba(0,0,0,0.2);
}
.axisTop {
right: 0;
height: var(--size);
box-shadow: var(--size) 1px 0px 0px rgba(0,0,0,0.2);
}
/* mask top left corner */
.axisTop + svg {
clip-path: polygon(
0% 0%,
0% 100%,
100% 100%,
100% 0%,
var(--size) 0%,
var(--size) var(--size),
0% var(--size)
);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment