aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/modal/welcome-modal.component.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/modal/welcome-modal.component.scss')
-rw-r--r--client/src/app/modal/welcome-modal.component.scss29
1 files changed, 29 insertions, 0 deletions
diff --git a/client/src/app/modal/welcome-modal.component.scss b/client/src/app/modal/welcome-modal.component.scss
index a59c5b7a9..8bb6973f4 100644
--- a/client/src/app/modal/welcome-modal.component.scss
+++ b/client/src/app/modal/welcome-modal.component.scss
@@ -11,6 +11,10 @@
11 font-size: 16px; 11 font-size: 16px;
12} 12}
13 13
14.block-documentation .subtitle {
15 margin-bottom: 20px;
16}
17
14.block-configuration, 18.block-configuration,
15.block-instance { 19.block-instance {
16 margin-top: 30px; 20 margin-top: 30px;
@@ -24,4 +28,29 @@ li {
24 text-align: center; 28 text-align: center;
25 font-weight: 600; 29 font-weight: 600;
26 font-size: 18px; 30 font-size: 18px;
31 margin: 20px 0 40px 0;
32}
33
34.columns {
35 display: flex;
36
37 .link-block {
38 @include disable-default-a-behaviour;
39
40 color: var(--mainForegroundColor);
41 padding: 10px;
42 transition: background-color 0.2s ease-in;
43
44 &:hover {
45 background-color: rgba(0, 0, 0, 0.05);
46 }
47
48 .link-title {
49 font-size: 16px;
50 font-weight: $font-semibold;
51 display: flex;
52 justify-content: center;
53 margin-bottom: 5px;
54 }
55 }
27} 56}