@oslokommune/punkt-css 11.5.1 → 11.5.2
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 +18 -0
- package/dist/css/pkt-base.css +10 -0
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt.css +10 -0
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/base/_grid.scss +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [11.5.2](https://github.com/oslokommune/punkt/compare/11.5.1...11.5.2) (2024-02-15)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Legg til --padding i pkt-grid (#1518).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [11.5.1](https://github.com/oslokommune/punkt/compare/11.5.0...11.5.1) (2024-02-14)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/css/pkt-base.css
CHANGED
|
@@ -11171,6 +11171,16 @@ body {
|
|
|
11171
11171
|
gap: 2rem;
|
|
11172
11172
|
}
|
|
11173
11173
|
}
|
|
11174
|
+
.pkt-grid--padding {
|
|
11175
|
+
padding-left: 1rem;
|
|
11176
|
+
padding-right: 1rem;
|
|
11177
|
+
}
|
|
11178
|
+
@media screen and (min-width: 48rem) {
|
|
11179
|
+
.pkt-grid--padding {
|
|
11180
|
+
padding-left: 2rem;
|
|
11181
|
+
padding-right: 2rem;
|
|
11182
|
+
}
|
|
11183
|
+
}
|
|
11174
11184
|
.pkt-grid--full {
|
|
11175
11185
|
max-width: 100%;
|
|
11176
11186
|
}
|