@kth/style 0.13.2 → 0.14.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kth/style",
3
- "version": "0.13.2",
3
+ "version": "0.14.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "exports": {
@@ -0,0 +1,10 @@
1
+ @use "../tokens/spacing.scss";
2
+ @use "../utils/mixins.scss";
3
+
4
+ .kth-content {
5
+ @include mixins.container;
6
+ }
7
+
8
+ // TODO: investigate the possibility to expand this `.kth-content` class:
9
+ // - is it possible to move the breadcrumbs inside the `kth-content` element?
10
+ // is it a good idea to do it from
@@ -14,6 +14,15 @@
14
14
 
15
15
  &__container {
16
16
  @include mixins.container;
17
+
18
+ &.search {
19
+ display: flex;
20
+ flex-direction: column;
21
+
22
+ .kth-icon-button {
23
+ align-self: end;
24
+ }
25
+ }
17
26
  }
18
27
 
19
28
  &__header {