Skip to content

Commit 88e45cb

Browse files
authored
Merge pull request #954 from Sysvale/fix/standardize-button-heights
fix/standardize-button-heights
2 parents d6cc162 + c3c8ea3 commit 88e45cb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sysvale/cuida",
3-
"version": "3.122.0",
3+
"version": "3.122.1",
44
"description": "A design system built by Sysvale, using storybook and Vue components",
55
"repository": {
66
"type": "git",

src/components/Button.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,18 +285,21 @@ export default {
285285
&--sm {
286286
@include tokens.button-3;
287287
padding: tokens.pYX(2, 4);
288+
height: 32px;
288289
border-radius: tokens.$border-radius-lil;
289290
}
290291
291292
&--md {
292293
@include tokens.button-2;
293294
padding: tokens.pYX(3, 6);
295+
height: 40px;
294296
border-radius: tokens.$border-radius-extra-small;
295297
}
296298
297299
&--lg {
298300
@include tokens.button-1;
299301
padding: tokens.pYX(4, 8);
302+
height: 48px;
300303
border-radius: tokens.$border-radius-extra-small;
301304
}
302305
}

0 commit comments

Comments
 (0)