@navikt/ds-css 0.18.23 → 1.0.0-rc.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/form/textarea.css CHANGED
@@ -37,7 +37,6 @@
37
37
  resize: none;
38
38
  width: 100%;
39
39
  display: block;
40
- min-height: 48px;
41
40
  color: var(--navds-text-field-color-text);
42
41
  }
43
42
 
package/help-text.css CHANGED
@@ -15,7 +15,6 @@
15
15
  --navds-help-text-color-shadow-hover: var(
16
16
  --navds-semantic-color-interaction-primary
17
17
  );
18
- --navds-help-text-color-shadow-focus: var(--navds-semantic-color-focus);
19
18
  --navds-help-text-color-popover-background: var(
20
19
  --navds-semantic-color-feedback-info-background
21
20
  );
@@ -35,27 +34,36 @@
35
34
  font-size: 1.5rem;
36
35
  }
37
36
 
38
- .navds-help-text__button:hover {
39
- color: var(--navds-help-text-color-hover);
40
- background: var(--navds-help-text-color-background-hover);
41
- box-shadow: 0 0 0 2px var(--navds-help-text-color-shadow-hover);
42
- }
43
-
44
37
  .navds-help-text__button:focus {
45
38
  outline: none;
46
- color: var(--navds-help-text-color-focus);
47
- background: var(--navds-help-text-color-background-focus);
48
- box-shadow: 0 0 0 3px var(--navds-help-text-color-shadow-focus);
39
+ box-shadow: 0 0 0 1px var(--navds-global-color-white),
40
+ 0 0 0 4px var(--navds-semantic-color-focus);
49
41
  }
50
42
 
51
43
  .navds-help-text__icon {
52
44
  border-radius: var(--navds-border-radius-full);
53
45
  }
54
46
 
55
- .navds-help-text__popover > .navds-popover__arrow::before {
47
+ .navds-help-text__popover > .navds-popover__arrow {
56
48
  background-color: var(--navds-help-text-color-popover-background);
57
49
  }
58
50
 
59
51
  .navds-help-text__popover.navds-popover {
60
52
  background-color: var(--navds-help-text-color-popover-background);
53
+
54
+ --navds-popover-color-border: rgba(38 38 38 / 0.22);
55
+ }
56
+
57
+ .navds-help-text__icon--filled {
58
+ display: none;
59
+ }
60
+
61
+ .navds-help-text__button:where(:hover, :focus, [aria-expanded="true"])
62
+ > .navds-help-text__icon {
63
+ display: none;
64
+ }
65
+
66
+ .navds-help-text__button:where(:hover, :focus, [aria-expanded="true"])
67
+ > .navds-help-text__icon--filled {
68
+ display: inherit;
61
69
  }
package/index.css CHANGED
@@ -7,12 +7,12 @@
7
7
  @import "alert.css";
8
8
  @import "button.css";
9
9
  @import "content-container.css";
10
+ @import "chat.css";
10
11
  @import "guide-panel.css";
11
12
  @import "form/index.css";
12
13
  @import "help-text.css";
13
14
  @import "link.css";
14
15
  @import "loader.css";
15
- @import "menu.css";
16
16
  @import "modal.css";
17
17
  @import "pagination.css";
18
18
  @import "popover.css";
@@ -22,12 +22,6 @@
22
22
  @import "panel.css";
23
23
  @import "link-panel.css";
24
24
  @import "read-more.css";
25
- @import "speech-bubble.css";
26
- @import "step-indicator.css";
27
25
  @import "stepper.css";
28
26
  @import "table.css";
29
27
  @import "tabs.css";
30
-
31
- /* Navno spesific packages */
32
- @import "page-header.css";
33
- @import "card.css";
package/link-panel.css CHANGED
@@ -12,7 +12,7 @@
12
12
  display: flex;
13
13
  align-items: center;
14
14
  justify-content: space-between;
15
- gap: var(--navds-spacing-2);
15
+ gap: var(--navds-spacing-4);
16
16
  }
17
17
 
18
18
  .navds-link-panel:hover .navds-link-panel__title {
@@ -42,5 +42,5 @@
42
42
  }
43
43
 
44
44
  .navds-link-panel__description {
45
- margin-top: var(--navds-spacing-2);
45
+ margin-top: var(--navds-spacing-1);
46
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@navikt/ds-css",
3
- "version": "0.18.23",
3
+ "version": "1.0.0-rc.2",
4
4
  "description": "Css for NAV Designsystem components",
5
5
  "author": "NAV Designsystem team",
6
6
  "keywords": [
@@ -20,12 +20,12 @@
20
20
  "watch": "postcss --watch --use postcss-import -o dist/index.css index.css"
21
21
  },
22
22
  "devDependencies": {
23
- "@navikt/ds-tokens": "^0.9.7",
23
+ "@navikt/ds-tokens": "^1.0.0-rc.2",
24
24
  "normalize.css": "^8.0.1",
25
25
  "postcss": "^8.3.6",
26
26
  "postcss-cli": "^8.3.1",
27
27
  "postcss-combine-duplicated-selectors": "10.0.3",
28
28
  "postcss-import": "^14.0.2"
29
29
  },
30
- "gitHead": "0826fcf332a3499c610d8d2035fbd542c9ed0433"
30
+ "gitHead": "60f13970436275f5af4a206995c545475c2f09db"
31
31
  }
package/pagination.css CHANGED
@@ -1,25 +1,12 @@
1
1
  :root {
2
- --navds-pagination-color-background-hover: var(
3
- --navds-semantic-color-canvas-background
4
- );
5
- --navds-pagination-color-background-active: var(
6
- --navds-semantic-color-interaction-primary-selected
7
- );
8
- --navds-pagination-color-text-active: var(
9
- --navds-semantic-color-text-inverted
10
- );
11
2
  --navds-pagination-color-background-selected: var(
12
- --navds-semantic-color-interaction-primary
3
+ --navds-semantic-color-interaction-primary-selected
13
4
  );
14
5
  --navds-pagination-color-text-selected: var(
15
6
  --navds-semantic-color-text-inverted
16
7
  );
17
8
  }
18
9
 
19
- .navds-pagination {
20
- display: flex;
21
- }
22
-
23
10
  .navds-pagination__list {
24
11
  margin: 0;
25
12
  padding: 0;
@@ -32,89 +19,48 @@
32
19
  display: flex;
33
20
  align-items: center;
34
21
  justify-content: center;
35
- width: var(--navds-spacing-8);
22
+ width: var(--navds-spacing-12);
36
23
  cursor: default;
37
24
  }
38
25
 
39
26
  .navds-pagination--small .navds-pagination__ellipsis {
40
- width: var(--navds-spacing-6);
41
- }
42
-
43
- .navds-pagination__item {
44
- display: flex;
45
- cursor: pointer;
46
- margin: 0;
47
- text-decoration: none;
48
- border: none;
49
- background: none;
50
- border-radius: var(--navds-border-radius-small);
51
- padding: var(--navds-spacing-1) var(--navds-spacing-3);
52
- }
53
-
54
- .navds-pagination--small .navds-pagination__item {
55
- padding: 2px var(--navds-spacing-2);
27
+ width: var(--navds-spacing-8);
56
28
  }
57
29
 
58
- .navds-pagination__item:hover {
59
- background-color: var(--navds-pagination-color-background-hover);
30
+ .navds-pagination--xsmall .navds-pagination__ellipsis {
31
+ width: var(--navds-spacing-6);
60
32
  }
61
33
 
62
- .navds-pagination__item:active {
63
- background-color: var(--navds-pagination-color-background-active);
64
- color: var(--navds-pagination-color-text-active);
34
+ .navds-pagination__item {
35
+ color: var(--navds-semantic-color-text);
65
36
  }
66
37
 
67
- .navds-pagination__item:focus {
68
- box-shadow: inset 0 0 0 2px var(--navds-semantic-color-focus),
69
- inset 0 0 0 3px white;
70
- outline: none;
38
+ .navds-pagination--medium .navds-pagination__item {
39
+ border-radius: var(--navds-border-radius-medium);
71
40
  }
72
41
 
73
42
  .navds-pagination__item[aria-current="true"] {
74
43
  background-color: var(--navds-pagination-color-background-selected);
75
44
  color: var(--navds-pagination-color-text-selected);
76
- font-weight: var(--navds-font-weight-bold);
45
+ }
46
+
47
+ .navds-pagination__item[aria-current="true"]:focus {
48
+ box-shadow: inset 0 0 0 1px var(--navds-button-color-tertiary-border-active),
49
+ var(--navds-shadow-focus);
77
50
  }
78
51
 
79
52
  .navds-pagination__prev-next {
80
53
  display: flex;
81
- cursor: pointer;
82
- margin: 0;
83
- padding: 0;
84
- border: none;
85
- background: none;
86
- text-decoration: underline;
87
- color: var(--navds-semantic-color-link);
88
54
  align-items: center;
89
55
  gap: var(--navds-spacing-1);
90
- border-radius: var(--navds-border-radius-small);
91
- }
92
-
93
- .navds-pagination__prev-next:focus {
94
- outline: none;
95
- box-shadow: inset 0 0 0 2px var(--navds-semantic-color-focus);
96
- }
97
-
98
- .navds-pagination__prev-next:disabled {
99
- cursor: not-allowed;
100
- opacity: 0.3;
101
- }
102
-
103
- .navds-pagination__prev-next-icon {
104
- margin: 7px;
105
- }
106
-
107
- .navds-pagination--small .navds-pagination__prev-next-icon {
108
- margin: var(--navds-spacing-1);
109
- font-size: 1rem;
110
56
  }
111
57
 
112
- .navds-pagination__next-text {
113
- padding-left: 0.75rem;
58
+ .navds-pagination--small .navds-pagination__prev-next {
59
+ padding: 0.375rem;
114
60
  }
115
61
 
116
- .navds-pagination__prev-text {
117
- padding-right: 0.75rem;
62
+ .navds-pagination--xsmall .navds-pagination__prev-next {
63
+ padding: 0.125rem;
118
64
  }
119
65
 
120
66
  .navds-pagination--invisible {
package/popover.css CHANGED
@@ -28,55 +28,33 @@
28
28
  }
29
29
 
30
30
  .navds-popover__arrow {
31
+ position: absolute;
31
32
  z-index: -1;
32
- }
33
-
34
- .navds-popover__arrow::before {
35
- display: block;
36
- content: "";
37
33
  transform: rotate(45deg);
38
34
  background-color: var(--navds-popover-color-background);
39
35
  border: 1px solid;
40
36
  border-color: var(--navds-popover-color-border);
41
37
  width: 1rem;
42
38
  height: 1rem;
43
- top: 0;
44
- left: 0;
45
39
  }
46
40
 
47
- .navds-popover[data-popper-placement^="top"] > .navds-popover__arrow {
48
- bottom: calc(1rem / -2);
49
- }
50
-
51
- .navds-popover[data-popper-placement^="top"] > .navds-popover__arrow::before {
41
+ .navds-popover[data-placement^="top"] > .navds-popover__arrow {
52
42
  border-left-color: transparent;
53
43
  border-top-color: transparent;
54
44
  }
55
45
 
56
- .navds-popover[data-popper-placement^="bottom"] > .navds-popover__arrow {
57
- top: calc(1rem / -2);
58
- }
59
-
60
46
  /* prettier-ignore */
61
- .navds-popover[data-popper-placement^="bottom"] > .navds-popover__arrow::before {
47
+ .navds-popover[data-placement^="bottom"] > .navds-popover__arrow {
62
48
  border-bottom-color: transparent;
63
49
  border-right-color: transparent;
64
50
  }
65
51
 
66
- .navds-popover[data-popper-placement^="left"] > .navds-popover__arrow {
67
- right: calc(1rem / -2);
68
- }
69
-
70
- .navds-popover[data-popper-placement^="left"] > .navds-popover__arrow::before {
52
+ .navds-popover[data-placement^="left"] > .navds-popover__arrow {
71
53
  border-left-color: transparent;
72
54
  border-bottom-color: transparent;
73
55
  }
74
56
 
75
- .navds-popover[data-popper-placement^="right"] > .navds-popover__arrow {
76
- left: calc(1rem / -2);
77
- }
78
-
79
- .navds-popover[data-popper-placement^="right"] > .navds-popover__arrow::before {
57
+ .navds-popover[data-placement^="right"] > .navds-popover__arrow {
80
58
  border-right-color: transparent;
81
59
  border-top-color: transparent;
82
60
  }
package/table.css CHANGED
@@ -148,7 +148,7 @@
148
148
  }
149
149
 
150
150
  .navds-table__header-cell--align-right .navds-table__sort-button {
151
- justify-content: end;
151
+ justify-content: flex-end;
152
152
  }
153
153
 
154
154
  .navds-table__header-cell--align-center .navds-table__sort-button {
package/tabs.css CHANGED
@@ -74,6 +74,10 @@
74
74
  gap: var(--navds-spacing-1);
75
75
  }
76
76
 
77
+ .navds-tabs__tab-inner svg {
78
+ flex-shrink: 0;
79
+ }
80
+
77
81
  .navds-tabs__tab-icon--top > .navds-tabs__tab-inner {
78
82
  flex-direction: column;
79
83
  gap: 0;
package/tooltip.css CHANGED
@@ -10,9 +10,6 @@
10
10
 
11
11
  .navds-tooltip {
12
12
  z-index: var(--navds-z-index-tooltip);
13
- }
14
-
15
- .navds-tooltip__inner {
16
13
  background-color: var(--navds-semantic-color-component-background-inverted);
17
14
  color: var(--navds-semantic-color-text-inverted);
18
15
  border-radius: var(--navds-border-radius-small);
package/card.css DELETED
@@ -1,55 +0,0 @@
1
- :root {
2
- --navds-card-micro-color-text: var(--navds-semantic-color-text);
3
- --navds-card-micro-color-background: var(--navds-global-color-orange-200);
4
- --navds-card-micro-color-border: transparent;
5
- --navds-card-micro-color-text-hover: var(--navds-semantic-color-link);
6
- --navds-card-micro-color-background-hover: var(
7
- --navds-semantic-color-component-background-light
8
- );
9
- --navds-card-micro-color-border-hover: var(
10
- --navds-semantic-color-interaction-primary
11
- );
12
- --navds-card-micro-color-text-focus: var(--navds-semantic-color-link);
13
- --navds-card-micro-color-background-focus: var(
14
- --navds-semantic-color-component-background-light
15
- );
16
- --navds-card-micro-color-shadow-focus: var(--navds-semantic-color-focus);
17
- --navds-card-micro-color-background-active: var(
18
- --navds-semantic-color-interaction-primary
19
- );
20
- --navds-card-micro-color-text-active: var(
21
- --navds-semantic-color-text-inverted
22
- );
23
- }
24
-
25
- /*
26
- MicroCard
27
- */
28
-
29
- .navds-card__micro {
30
- border-radius: var(--navds-border-radius-full);
31
- color: var(--navds-card-micro-color-text);
32
- display: inline-flex;
33
- padding: var(--navds-spacing-1) var(--navds-spacing-2);
34
- text-decoration: none;
35
- background-color: var(--navds-card-micro-color-background);
36
- border: 1px solid var(--navds-card-micro-color-border);
37
- }
38
-
39
- .navds-card__micro:hover {
40
- background-color: var(--navds-card-micro-color-background-hover);
41
- border-color: var(--navds-card-micro-color-border-hover);
42
- color: var(--navds-card-micro-color-text-hover);
43
- }
44
-
45
- .navds-card__micro:focus {
46
- background-color: var(--navds-card-micro-color-background-focus);
47
- color: var(--navds-card-micro-color-text-focus);
48
- outline: none;
49
- box-shadow: 0 0 0 3px var(--navds-card-micro-color-shadow-focus);
50
- }
51
-
52
- .navds-card__micro:active {
53
- background-color: var(--navds-card-micro-color-background-active);
54
- color: var(--navds-card-micro-color-text-active);
55
- }
package/menu.css DELETED
@@ -1,102 +0,0 @@
1
- :root {
2
- --navds-menu-color-text: var(--navds-semantic-color-link);
3
- --navds-menu-color-text-hover: var(--navds-semantic-color-text);
4
- --navds-menu-color-text-focus: var(--navds-semantic-color-text);
5
- --navds-menu-color-background-hover: var(--navds-global-color-blue-50);
6
- --navds-menu-color-text-active: var(--navds-semantic-color-text);
7
- --navds-menu-outline-focus: var(--navds-semantic-color-focus);
8
- }
9
-
10
- .navds-menu__list {
11
- list-style: none;
12
- margin: 0;
13
- padding: 0;
14
- padding: 0 0.5rem;
15
- }
16
-
17
- .navds-menu__list--inner {
18
- padding: 0;
19
- }
20
-
21
- .navds-menu-collapse__button {
22
- cursor: pointer;
23
- background-color: transparent;
24
- border: none;
25
- font: inherit;
26
- text-align: inherit;
27
- margin: 0;
28
- width: 100%;
29
- justify-content: space-between;
30
- align-items: center;
31
- font-weight: var(--navds-font-weight-bold);
32
- color: var(--navds-menu-color-text);
33
- }
34
-
35
- .navds-menu-item,
36
- .navds-menu-collapse__button {
37
- font-weight: var(--navds-font-weight-bold);
38
- display: flex;
39
- padding: var(--navds-spacing-3) var(--navds-spacing-2);
40
- text-decoration: none;
41
- }
42
-
43
- .navds-menu-item:focus,
44
- .navds-menu-collapse__button:focus {
45
- outline: 3px solid var(--navds-menu-outline-focus);
46
- outline-offset: -3px;
47
- color: var(--navds-menu-color-text-focus);
48
- }
49
-
50
- .navds-menu-collapse__button:focus > .navds-menu-collapse__expand-icon {
51
- color: var(--navds-menu-color-focus);
52
- }
53
-
54
- .navds-menu-item:hover,
55
- .navds-menu-collapse__button:hover {
56
- background-color: var(--navds-menu-color-background-hover);
57
- color: var(--navds-menu-color-text-hover);
58
- }
59
-
60
- .navds-menu-item--active {
61
- box-shadow: -0.5rem 0 var(--navds-semantic-color-link);
62
- color: var(--navds-menu-color-text-active);
63
- text-decoration: none;
64
- }
65
-
66
- /* Collapse icon */
67
- .navds-menu-collapse__expand-icon {
68
- font-size: 1.5rem;
69
- flex-shrink: 0;
70
- margin-left: var(--navds-spacing-2);
71
- }
72
-
73
- .navds-menu-collapse__expand-icon--filled,
74
- .navds-menu-collapse__button:hover > .navds-menu-collapse__expand-icon {
75
- display: none;
76
- }
77
-
78
- .navds-menu-collapse__button:hover > .navds-menu-collapse__expand-icon--filled {
79
- display: block;
80
- }
81
-
82
- .navds-menu-collapse--open
83
- > .navds-menu-collapse__button
84
- > .navds-menu-collapse__expand-icon {
85
- transform: rotate(180deg);
86
- }
87
-
88
- /* Nesting levels */
89
- .navds-menu__list[data-depth="1"] .navds-menu-collapse__button,
90
- .navds-menu__list[data-depth="1"] .navds-menu-item {
91
- padding-left: var(--navds-spacing-6);
92
- }
93
-
94
- .navds-menu__list[data-depth="2"] .navds-menu-collapse__button,
95
- .navds-menu__list[data-depth="2"] .navds-menu-item {
96
- padding-left: var(--navds-spacing-10);
97
- }
98
-
99
- .navds-menu__list[data-depth="3"] .navds-menu-collapse__button,
100
- .navds-menu__list[data-depth="3"] .navds-menu-item {
101
- padding-left: var(--navds-spacing-14);
102
- }
package/page-header.css DELETED
@@ -1,76 +0,0 @@
1
- :root {
2
- --navds-page-header-color-background: var(
3
- --navds-semantic-color-component-background-light
4
- );
5
- --navds-page-header-color-shadow-situation: var(
6
- --navds-global-color-orange-400
7
- );
8
- --navds-page-header-color-shadow-product: var(--navds-global-color-green-400);
9
- --navds-page-header-color-shadow-guide: var(
10
- --navds-global-color-deepblue-400
11
- );
12
- }
13
-
14
- .navds-page-header {
15
- display: flex;
16
- justify-content: center;
17
- background-color: var(--navds-page-header-color-background);
18
- padding: 1.5rem calc((100vw - 100%) / 2);
19
- margin-left: calc((100vw - 100%) / -2);
20
- margin-right: calc((100vw - 100%) / -2);
21
- }
22
-
23
- .navds-page-header__wrapper {
24
- width: 100%;
25
- max-width: 56.5rem;
26
- text-align: left;
27
- }
28
-
29
- .navds-page-header__title {
30
- display: flex;
31
- margin: 0 auto;
32
- width: 100%;
33
- position: relative;
34
- flex-direction: column;
35
- }
36
-
37
- .navds-page-header--left > .navds-page-header__wrapper {
38
- text-align: left;
39
- }
40
-
41
- .navds-page-header--center > .navds-page-header__wrapper {
42
- text-align: center;
43
- }
44
-
45
- .navds-page-header__illustration {
46
- margin-right: 1.5rem;
47
- pointer-events: none;
48
- }
49
-
50
- .navds-page-header__illustration > svg {
51
- width: 5rem;
52
- height: 5rem;
53
- }
54
-
55
- .navds-page-header--situation {
56
- box-shadow: 0 -4px 0 var(--navds-page-header-color-shadow-situation) inset;
57
- }
58
-
59
- .navds-page-header--product {
60
- box-shadow: 0 -4px 0 var(--navds-page-header-color-shadow-product) inset;
61
- }
62
-
63
- .navds-page-header--guide {
64
- box-shadow: 0 -4px 0 var(--navds-page-header-color-shadow-guide) inset;
65
- }
66
-
67
- @media (max-width: 649px) {
68
- .navds-page-header__illustration > svg {
69
- width: 3rem;
70
- height: 3rem;
71
- }
72
-
73
- .navds-page-header__title {
74
- font-size: var(--navds-font-size-heading-xlarge);
75
- }
76
- }
package/speech-bubble.css DELETED
@@ -1,85 +0,0 @@
1
- :root {
2
- --navds-speechbubble-color-background: var(
3
- --navds-semantic-color-component-background-alternate
4
- );
5
- --navds-speechbubble-color-illustration: var(--navds-semantic-color-text);
6
- --navds-speechbubble-color-illustration-background: var(
7
- --navds-semantic-color-canvas-background
8
- );
9
- --navds-speechbubble-color-detail-text: var(
10
- --navds-semantic-color-text-muted
11
- );
12
- }
13
-
14
- .navds-speechbubble {
15
- display: flex;
16
- align-items: flex-end;
17
- gap: var(--navds-spacing-4);
18
- }
19
-
20
- .navds-speechbubble--right {
21
- flex-direction: row-reverse;
22
- }
23
-
24
- .navds-speechbubble__bubble-list {
25
- list-style: none;
26
- margin: 0;
27
- padding: 0;
28
- display: flex;
29
- flex-direction: column;
30
- gap: var(--navds-spacing-3);
31
- }
32
-
33
- .navds-speechbubble--right .navds-speechbubble__bubble-list {
34
- align-items: flex-end;
35
- }
36
-
37
- .navds-speechbubble__illustration {
38
- align-items: center;
39
- background: var(--navds-speechbubble-color-illustration-background);
40
- color: var(--navds-speechbubble-color-illustration);
41
- border-radius: var(--navds-border-radius-full);
42
- display: flex;
43
- flex-shrink: 0;
44
- justify-content: center;
45
- overflow: hidden;
46
- height: 3rem;
47
- width: 3rem;
48
- }
49
-
50
- .navds-speechbubble__illustration svg {
51
- align-self: center;
52
- height: 100%;
53
- width: 100%;
54
- }
55
-
56
- .navds-speechbubble__bubble {
57
- padding: 1rem;
58
- box-shadow: var(--navds-shadow-small);
59
- width: fit-content;
60
- max-width: 37.5rem;
61
- background-color: var(--navds-speechbubble-color-background);
62
- border-radius: var(--navds-border-radius-xlarge);
63
- border-bottom-left-radius: 2px;
64
- display: flex;
65
- flex-direction: column;
66
- gap: var(--navds-spacing-2);
67
- }
68
-
69
- .navds-speechbubble__bubble:focus {
70
- box-shadow: var(--navds-shadow-focus);
71
- outline: none;
72
- }
73
-
74
- .navds-speechbubble--right .navds-speechbubble__bubble {
75
- border-radius: var(--navds-border-radius-xlarge);
76
- border-bottom-right-radius: 2px;
77
- }
78
-
79
- .navds-speechbubble__top-text {
80
- color: var(--navds-speechbubble-color-detail-text);
81
- }
82
-
83
- .navds-speechbubble--right .navds-speechbubble__top-text {
84
- align-self: flex-end;
85
- }