Skip to content

Commit 1938f28

Browse files
committed
style: ignore file
1 parent abc77f2 commit 1938f28

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ packages/**/node_modules/*
33
packages/**/dist/*
44
packages/**/build/*
55
packages/**/lib/*
6+
packages/**/coverage/*

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ node_modules
33
dist
44
dist-ssr
55
build
6+
lib
67
coverage
78
cache
89
.eslintcache
10+
.vitepress
911
*.local
12+

packages/hbui-vue/docs/components/card/index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
<template #title>HBUI Course</template>
1717
<template #subtitle class="card-demo-icon"></template>
1818
<template #content>
19-
HBUI is a free open-source and common solution for the front end of enterprise mid- and
20-
back-end products. Its design values are basedon...
19+
HBUI is a free open-source and common solution for the front end of enterprise mid- and back-end products. Its design values are basedon...
2120
</template>
2221
</hb-card>
2322
</template>

packages/hbui-vue/ui/button/src/button.scss

+3-10
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ $hbui-btn-common-bg-active: var(--hbui-btn-common-bg-active, $hbui-base-bg);
77
$hbui-btn-common-color-hover: var(--hbui-btn-common-color-hover, $hbui-brand-active);
88
$hbui-btn-common-color-active: var(--hbui-btn-common-color-active, $hbui-brand-active);
99
$hbui-btn-common-border-color: var(--hbui-btn-common-border-color, $hbui-line);
10-
$hbui-btn-common-border-color-hover: var(
11-
--hbui-btn-common-border-color-hover,
12-
$hbui-form-control-line-active
13-
);
14-
$hbui-btn-common-border-color-active: var(
15-
--hbui-btn-common-border-color-active,
16-
$hbui-form-control-line-active
17-
);
10+
$hbui-btn-common-border-color-hover: var(--hbui-btn-common-border-color-hover, $hbui-form-control-line-active);
11+
$hbui-btn-common-border-color-active: var(--hbui-btn-common-border-color-active, $hbui-form-control-line-active);
1812
$hbui-btn-sm-padding: var(--hbui-btn-sm-padding, 0 16px);
1913
$hbui-btn-lg-padding: var(--hbui-btn-lg-padding, 0 24px);
2014

@@ -269,8 +263,7 @@ $hbui-btn-lg-padding: var(--hbui-btn-lg-padding, 0 24px);
269263

270264
.#{$hbui-prefix}-button {
271265
transition: background-color $hbui-animation-duration-slow $hbui-animation-ease-in-out-smooth,
272-
border-color $hbui-animation-duration-slow $hbui-animation-ease-in-out-smooth,
273-
color $hbui-animation-duration-slow $hbui-animation-ease-in-out-smooth;
266+
border-color $hbui-animation-duration-slow $hbui-animation-ease-in-out-smooth, color $hbui-animation-duration-slow $hbui-animation-ease-in-out-smooth;
274267
white-space: nowrap;
275268
display: inline-flex;
276269
align-items: center;

0 commit comments

Comments
 (0)