blob: 8bb6973f4530660c809efa0f39fa55b961e68068 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
@import '_mixins';
@import '_variables';
.modal-body {
font-size: 15px;
}
.subtitle {
font-weight: $font-semibold;
margin-bottom: 10px;
font-size: 16px;
}
.block-documentation .subtitle {
margin-bottom: 20px;
}
.block-configuration,
.block-instance {
margin-top: 30px;
}
li {
margin-bottom: 10px;
}
.configure-instance {
text-align: center;
font-weight: 600;
font-size: 18px;
margin: 20px 0 40px 0;
}
.columns {
display: flex;
.link-block {
@include disable-default-a-behaviour;
color: var(--mainForegroundColor);
padding: 10px;
transition: background-color 0.2s ease-in;
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.link-title {
font-size: 16px;
font-weight: $font-semibold;
display: flex;
justify-content: center;
margin-bottom: 5px;
}
}
}
|