@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/dist/css/pkt.css CHANGED
@@ -11374,7 +11374,7 @@ body {
11374
11374
  margin-right: 0;
11375
11375
  }
11376
11376
 
11377
- /*
11377
+ /*
11378
11378
  * CSS Grid layouts
11379
11379
  */
11380
11380
  .pkt-grid {
@@ -13206,6 +13206,24 @@ body {
13206
13206
  row-gap: 6.25rem;
13207
13207
  }
13208
13208
  }
13209
+ .pkt-grid > .pkt-cell--left {
13210
+ justify-self: start;
13211
+ }
13212
+ .pkt-grid > .pkt-cell--center {
13213
+ justify-self: center;
13214
+ }
13215
+ .pkt-grid > .pkt-cell--right {
13216
+ justify-self: end;
13217
+ }
13218
+ .pkt-grid > .pkt-cell--top {
13219
+ align-self: self-start;
13220
+ }
13221
+ .pkt-grid > .pkt-cell--center-vertical {
13222
+ align-self: center;
13223
+ }
13224
+ .pkt-grid > .pkt-cell--bottom {
13225
+ align-self: self-end;
13226
+ }
13209
13227
  .pkt-grid > .pkt-cell.pkt-cell--span2 {
13210
13228
  grid-column-end: span 2;
13211
13229
  }