@oslokommune/punkt-css 11.18.0 → 11.19.3
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/CHANGELOG.md +21 -0
- package/dist/css/components/stepper.css +15 -1
- package/dist/css/components/stepper.min.css +1 -1
- package/dist/css/components/textinput.css +1 -1
- package/dist/css/components/textinput.min.css +1 -1
- package/dist/css/pkt-base.css +1 -1
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +16 -2
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt-elements.css +3 -3
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt.css +19 -5
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/variables/_index.scss +1 -1
- package/dist/scss/components/_stepper.scss +18 -1
- package/package.json +3 -3
|
@@ -63,6 +63,12 @@
|
|
|
63
63
|
height: fit-content;
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
+
|
|
67
|
+
&__nav-wrapper {
|
|
68
|
+
display: flex;
|
|
69
|
+
gap: 20px;
|
|
70
|
+
margin-top: map.get(variables.$spacing, 'size-16');
|
|
71
|
+
}
|
|
66
72
|
}
|
|
67
73
|
}
|
|
68
74
|
|
|
@@ -84,6 +90,9 @@
|
|
|
84
90
|
padding: map-get(variables.$spacing, 'size-16') map-get(variables.$spacing, 'size-24');
|
|
85
91
|
background-color: var(--pkt-color-surface-subtle-pale-blue);
|
|
86
92
|
}
|
|
93
|
+
.pkt-step__content {
|
|
94
|
+
padding-top: 0;
|
|
95
|
+
}
|
|
87
96
|
|
|
88
97
|
.pkt-step__wrapper {
|
|
89
98
|
margin-bottom: map-get(variables.$spacing, 'size-24');
|
|
@@ -115,6 +124,10 @@
|
|
|
115
124
|
min-height: map.get(variables.$spacing, 'size-64');
|
|
116
125
|
}
|
|
117
126
|
}
|
|
127
|
+
|
|
128
|
+
&__nav-wrapper {
|
|
129
|
+
flex-direction: row;
|
|
130
|
+
}
|
|
118
131
|
}
|
|
119
132
|
}
|
|
120
133
|
|
|
@@ -124,7 +137,7 @@
|
|
|
124
137
|
|
|
125
138
|
.pkt-step {
|
|
126
139
|
grid-template-areas: 'indicator line' 'title title' 'content content';
|
|
127
|
-
grid-template-columns: var(--pkt-steps-indicator-width)
|
|
140
|
+
grid-template-columns: var(--pkt-steps-indicator-width) minmax(60px, max-content);
|
|
128
141
|
grid-template-rows: var(--pkt-steps-indicator-width) min-content min-content;
|
|
129
142
|
justify-items: flex-start;
|
|
130
143
|
|
|
@@ -164,6 +177,10 @@
|
|
|
164
177
|
min-width: map.get(variables.$spacing, 'size-80');
|
|
165
178
|
}
|
|
166
179
|
}
|
|
180
|
+
|
|
181
|
+
&__nav-wrapper {
|
|
182
|
+
flex-direction: column;
|
|
183
|
+
}
|
|
167
184
|
}
|
|
168
185
|
}
|
|
169
186
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-css",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.19.3",
|
|
4
4
|
"description": "CSS-rammeverket til Punkt, et designsystem laget av Oslo Origo",
|
|
5
5
|
"homepage": "https://punkt.oslo.kommune.no",
|
|
6
6
|
"author": "Team Designsystem, Oslo Origo",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"preview": "astro preview"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@oslokommune/punkt-assets": "^11.
|
|
23
|
+
"@oslokommune/punkt-assets": "^11.19.3",
|
|
24
24
|
"astro": "^2.8.1",
|
|
25
25
|
"edit-json-file": "^1.7.0",
|
|
26
26
|
"fs-extra": "^11.1.0",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
56
56
|
},
|
|
57
57
|
"license": "MIT",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "fd9b88908687cb439eced58b76deab1a33eb4208"
|
|
59
59
|
}
|