aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkButtonBox.scss
blob: 24bfd2c9f3f941616c96249b6d6fb0fc4b371e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.linkBox-cont {
    width: 200px;
    height: 100px;
    background-color: black;
    text-align: center;
    color: white;
    padding: 10px;
    border-radius: 5px;
    position: relative;

    .linkBox-cont-wrapper {
        width: calc(100% - 20px);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}