aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/graph/graph.component.css
blob: 361e7249a4752bc30708cb0fe7af18daf3ff9bc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.node-text {
    position: absolute;
    color: transparent;
    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:hover {
    color: var(--offwhite);
}