@oslokommune/punkt-css 11.0.2 → 11.0.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 +18 -0
- package/dist/css/pkt-base.css +19 -1
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt.css +19 -1
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/base/_grid.scss +23 -1
- 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.0.3](https://github.com/oslokommune/punkt/compare/11.0.2...11.0.3) (2024-01-18)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
Ingen
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
* justering av pkt grid celle.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [11.0.2](https://github.com/oslokommune/punkt/compare/11.0.1...11.0.2) (2024-01-18)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/css/pkt-base.css
CHANGED
|
@@ -11154,7 +11154,7 @@ body {
|
|
|
11154
11154
|
margin-right: 0;
|
|
11155
11155
|
}
|
|
11156
11156
|
|
|
11157
|
-
/*
|
|
11157
|
+
/*
|
|
11158
11158
|
* CSS Grid layouts
|
|
11159
11159
|
*/
|
|
11160
11160
|
.pkt-grid {
|
|
@@ -12986,6 +12986,24 @@ body {
|
|
|
12986
12986
|
row-gap: 6.25rem;
|
|
12987
12987
|
}
|
|
12988
12988
|
}
|
|
12989
|
+
.pkt-grid > .pkt-cell--left {
|
|
12990
|
+
justify-self: start;
|
|
12991
|
+
}
|
|
12992
|
+
.pkt-grid > .pkt-cell--center {
|
|
12993
|
+
justify-self: center;
|
|
12994
|
+
}
|
|
12995
|
+
.pkt-grid > .pkt-cell--right {
|
|
12996
|
+
justify-self: end;
|
|
12997
|
+
}
|
|
12998
|
+
.pkt-grid > .pkt-cell--top {
|
|
12999
|
+
align-self: self-start;
|
|
13000
|
+
}
|
|
13001
|
+
.pkt-grid > .pkt-cell--center-vertical {
|
|
13002
|
+
align-self: center;
|
|
13003
|
+
}
|
|
13004
|
+
.pkt-grid > .pkt-cell--bottom {
|
|
13005
|
+
align-self: self-end;
|
|
13006
|
+
}
|
|
12989
13007
|
.pkt-grid > .pkt-cell.pkt-cell--span2 {
|
|
12990
13008
|
grid-column-end: span 2;
|
|
12991
13009
|
}
|