gent_styleguide 6.0.0-alpha20 → 6.0.0-alpha21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/main.css +1 -1
- package/build/styleguide/fonts/gent-icons-v6.eot +0 -0
- package/build/styleguide/fonts/gent-icons-v6.ttf +0 -0
- package/build/styleguide/fonts/gent-icons-v6.woff +0 -0
- package/build/styleguide/fonts/gent-icons-v6.woff2 +0 -0
- package/build/styleguide/sass/00-settings/_themes.scss +1 -0
- package/build/styleguide/sass/31-molecules/modal/_modal.scss +8 -2
- package/build/styleguide/sass/31-molecules/partner-block/_partner-block.scss +26 -11
- package/build/styleguide/sass/41-organisms/header/_header.scss +2 -1
- package/package.json +4 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -12,6 +12,7 @@ $themes: (
|
|
|
12
12
|
'color-zero': color('gray'),
|
|
13
13
|
'color-none': color('white'),
|
|
14
14
|
'color-primary': color('blue'),
|
|
15
|
+
'color-primary-light': color('blue-light'),
|
|
15
16
|
'color-secondary': color('yellow'),
|
|
16
17
|
'color-secondary-pastel': color('yellow-pastel'),
|
|
17
18
|
'color-secondary-light': color('yellow-light'),
|
|
@@ -124,6 +124,12 @@
|
|
|
124
124
|
@include tablet {
|
|
125
125
|
padding: 16px 70px 60px;
|
|
126
126
|
}
|
|
127
|
+
|
|
128
|
+
p {
|
|
129
|
+
&:last-child {
|
|
130
|
+
margin-bottom: 0;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
127
133
|
}
|
|
128
134
|
|
|
129
135
|
///
|
|
@@ -137,8 +143,8 @@
|
|
|
137
143
|
flex-shrink: 0;
|
|
138
144
|
align-items: center;
|
|
139
145
|
width: 100%;
|
|
140
|
-
|
|
141
|
-
|
|
146
|
+
margin-top: -15px;
|
|
147
|
+
padding: 0 70px 60px;
|
|
142
148
|
z-index: z('modal', 'actions');
|
|
143
149
|
|
|
144
150
|
@include tablet {
|
|
@@ -15,25 +15,31 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.intro {
|
|
18
|
-
@include theme('border-color', 'link-hover-background', 'partner-intro-border');
|
|
19
|
-
margin: 0 0 2.25rem;
|
|
20
|
-
padding: 0 0 2.25rem;
|
|
21
|
-
border-bottom-width: .1rem;
|
|
22
|
-
border-bottom-style: solid;
|
|
23
|
-
|
|
24
18
|
@include desktop {
|
|
25
19
|
min-width: 17.5rem;
|
|
26
|
-
margin: 0 3rem 0 0;
|
|
27
|
-
padding: 0 3rem 0 0;
|
|
28
|
-
border-bottom: 0;
|
|
29
|
-
border-right-width: .1rem;
|
|
30
|
-
border-right-style: solid;
|
|
31
20
|
}
|
|
32
21
|
|
|
33
22
|
p:last-child {
|
|
34
23
|
margin-bottom: 0;
|
|
35
24
|
}
|
|
36
25
|
}
|
|
26
|
+
|
|
27
|
+
.partners {
|
|
28
|
+
@include theme('border-color', 'color-primary-light', 'partner-intro-border');
|
|
29
|
+
|
|
30
|
+
margin: 2.25rem 0 0 ;
|
|
31
|
+
padding: 2.25rem 0 0;
|
|
32
|
+
border-top-width: .1rem;
|
|
33
|
+
border-top-style: solid;
|
|
34
|
+
|
|
35
|
+
@include desktop {
|
|
36
|
+
margin: 0 0 0 3rem;
|
|
37
|
+
padding: 0 0 0 3rem;
|
|
38
|
+
border-top: 0;
|
|
39
|
+
border-left-width: .1rem;
|
|
40
|
+
border-left-style: solid;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
&.partner__single {
|
|
@@ -46,6 +52,10 @@
|
|
|
46
52
|
}
|
|
47
53
|
}
|
|
48
54
|
|
|
55
|
+
h2 {
|
|
56
|
+
margin-bottom: 30px;
|
|
57
|
+
}
|
|
58
|
+
|
|
49
59
|
ul {
|
|
50
60
|
align-items: center;
|
|
51
61
|
gap: 1.5rem 3rem; // sass-lint:disable-line no-misspelled-properties
|
|
@@ -62,6 +72,11 @@
|
|
|
62
72
|
}
|
|
63
73
|
}
|
|
64
74
|
|
|
75
|
+
a {
|
|
76
|
+
display: block;
|
|
77
|
+
border: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
65
80
|
figure {
|
|
66
81
|
min-width: 3.5rem;
|
|
67
82
|
max-width: 7.5rem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gent_styleguide",
|
|
3
|
-
"version": "6.0.0-
|
|
3
|
+
"version": "6.0.0-alpha21",
|
|
4
4
|
"description": "Styleguide Stad.Gent",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@babel/core": "^7.20.12",
|
|
@@ -41,7 +41,9 @@
|
|
|
41
41
|
"Jeroen Goossens",
|
|
42
42
|
"Gert-Jan Meire",
|
|
43
43
|
"Helena Standaert",
|
|
44
|
-
"Bart Delrue"
|
|
44
|
+
"Bart Delrue",
|
|
45
|
+
"Lennart Van Vaerenbergh",
|
|
46
|
+
"Sven Vandevenne"
|
|
45
47
|
],
|
|
46
48
|
"license": "GPL-2.0",
|
|
47
49
|
"optionalDependencies": {
|