@danske/sapphire-css 26.1.0 → 26.1.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.
|
@@ -592,6 +592,12 @@ a.sapphire-button {
|
|
|
592
592
|
font-size: var(--sapphire-button-size-font-l);
|
|
593
593
|
border-radius: var(--sapphire-button-size-radius-l);
|
|
594
594
|
}
|
|
595
|
+
.sapphire-button--large.sapphire-button--secondary-text,
|
|
596
|
+
.sapphire-button--large.sapphire-button--tertiary-text,
|
|
597
|
+
.sapphire-button--large.sapphire-button--danger-text {
|
|
598
|
+
padding: 0;
|
|
599
|
+
border-radius: var(--sapphire-button-size-radius-text);
|
|
600
|
+
}
|
|
595
601
|
|
|
596
602
|
/**
|
|
597
603
|
* SMALL
|
|
@@ -603,3 +609,9 @@ a.sapphire-button {
|
|
|
603
609
|
font-size: var(--sapphire-button-size-font-s);
|
|
604
610
|
border-radius: var(--sapphire-button-size-radius-s);
|
|
605
611
|
}
|
|
612
|
+
.sapphire-button--small.sapphire-button--secondary-text,
|
|
613
|
+
.sapphire-button--small.sapphire-button--tertiary-text,
|
|
614
|
+
.sapphire-button--small.sapphire-button--danger-text {
|
|
615
|
+
padding: 0;
|
|
616
|
+
border-radius: var(--sapphire-button-size-radius-text);
|
|
617
|
+
}
|
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
*/
|
|
13
13
|
-webkit-font-smoothing: antialiased;
|
|
14
14
|
-moz-osx-font-smoothing: grayscale;
|
|
15
|
+
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
justify-content: space-between;
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
.sapphire-table--overflow {
|
|
@@ -24,7 +28,6 @@
|
|
|
24
28
|
.sapphire-table__table {
|
|
25
29
|
border-collapse: collapse;
|
|
26
30
|
border-spacing: 0;
|
|
27
|
-
height: inherit;
|
|
28
31
|
background-color: var(--sapphire-table-color-background-table);
|
|
29
32
|
width: 100%;
|
|
30
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danske/sapphire-css",
|
|
3
|
-
"version": "26.1.
|
|
3
|
+
"version": "26.1.3",
|
|
4
4
|
"description": "CSS implementation of the Sapphire Design System from Danske Bank A/S",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@danske/sapphire-design-tokens": "^35.4.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "321608909172efb7ab3ed1574a3ceda82b08114e"
|
|
72
72
|
}
|
package/themes/index.d.ts
CHANGED