aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/graph/graph.component.css
blob: 456a8df1705e7bfda7c9788bbee300c57146b83c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.node-text {
    position: absolute;
    width: 100px;
    height: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
    transform: translate(-50%, -50%);
}

.node-text:not(.inputs) {
    color: transparent;
}

.node-text:not(.inputs):hover {
    color: var(--offwhite);
}