@navikt/ds-css 0.15.10 → 0.16.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/button.css +7 -1
- package/dist/index.css +149 -40
- package/form/index.css +1 -1
- package/form/search.css +118 -0
- package/form/text-field.css +2 -0
- package/package.json +2 -2
- package/table.css +64 -3
- package/toggle-group.css +2 -1
- package/form/search-field.css +0 -59
package/button.css
CHANGED
|
@@ -99,6 +99,11 @@
|
|
|
99
99
|
min-width: 32px;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
.navds-button--xsmall {
|
|
103
|
+
padding: 0.125rem 0.375rem;
|
|
104
|
+
min-width: 24px;
|
|
105
|
+
}
|
|
106
|
+
|
|
102
107
|
.navds-button:focus {
|
|
103
108
|
outline: none;
|
|
104
109
|
box-shadow: var(--navds-shadow-focus);
|
|
@@ -115,7 +120,8 @@
|
|
|
115
120
|
font-size: 1.5rem;
|
|
116
121
|
}
|
|
117
122
|
|
|
118
|
-
.navds-button--small svg
|
|
123
|
+
.navds-button--small svg,
|
|
124
|
+
.navds-button--xsmall svg {
|
|
119
125
|
font-size: 1.25rem;
|
|
120
126
|
}
|
|
121
127
|
|