@citizenplane/pimp 15.1.2 → 15.1.4
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/style.css +1 -1
- package/package.json +2 -2
- package/src/components/CpBadge.vue +4 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citizenplane/pimp",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.4",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"dev": "storybook dev -p
|
|
5
|
+
"dev": "storybook dev -p 8081",
|
|
6
6
|
"build-storybook": "storybook build --output-dir ./docs",
|
|
7
7
|
"build": "vite build",
|
|
8
8
|
"lint": "eslint . --color",
|
|
@@ -122,13 +122,16 @@ const componentDynamicClasses = computed(() => [
|
|
|
122
122
|
|
|
123
123
|
.cpBadge {
|
|
124
124
|
display: inline-flex;
|
|
125
|
-
text-wrap: wrap;
|
|
126
125
|
align-items: center;
|
|
127
126
|
justify-content: center;
|
|
128
127
|
border-radius: var(--cp-radius-full);
|
|
129
128
|
background-color: var(--cp-background-tertiary);
|
|
130
129
|
gap: var(--cp-spacing-sm-md);
|
|
131
130
|
|
|
131
|
+
&__label {
|
|
132
|
+
white-space: nowrap;
|
|
133
|
+
}
|
|
134
|
+
|
|
132
135
|
@include cp-badge-sized(
|
|
133
136
|
'md',
|
|
134
137
|
var(--cp-text-size-sm),
|