podo-ui 0.7.2 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podo-ui",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "type": "module",
5
5
  "author": "hada0127 <work@tarucy.net>",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@ button {
27
27
  &.default-fill {
28
28
  color: color('default-reverse');
29
29
  background-color: color('default-fill');
30
- border: 1px solid color('default');
30
+ border: 1px solid color('border');
31
31
  @include button-status('default');
32
32
  }
33
33
  &.default-border,
@@ -188,7 +188,6 @@ button {
188
188
  }
189
189
  button:not(:disabled).default-deep {
190
190
  &-border,
191
- &-text,
192
191
  &-fill {
193
192
  color: color('text-body');
194
193
  border: 1px solid color('border');
@@ -196,4 +195,10 @@ button:not(:disabled).default-deep {
196
195
  color: color('text-body');
197
196
  }
198
197
  }
198
+ &-text {
199
+ color: color('text-body');
200
+ &:hover {
201
+ color: color('text-body');
202
+ }
203
+ }
199
204
  }
@@ -9,6 +9,16 @@ button {
9
9
  gap: s(2);
10
10
  border-radius: r(3);
11
11
  padding: s(3) s(5);
12
+ &.xxs {
13
+ @include p5;
14
+ & {
15
+ border-radius: r(2);
16
+ padding: s(2);
17
+ > i::before {
18
+ font-size: 16px;
19
+ }
20
+ }
21
+ }
12
22
  &.xs {
13
23
  @include p4;
14
24
  & {
package/vite-fonts.scss CHANGED
@@ -7,85 +7,3 @@
7
7
  src: url(podo-ui/scss/icon/font/icon.woff) format('woff');
8
8
  font-display: swap;
9
9
  }
10
-
11
- // Pretendard 폰트
12
- @font-face {
13
- font-family: 'Pretendard';
14
- font-weight: 900;
15
- src:
16
- local('Pretendard Black'),
17
- url(podo-ui/scss/typo/font/Pretendard-Black.woff2) format('woff2');
18
- font-display: swap;
19
- }
20
-
21
- @font-face {
22
- font-family: 'Pretendard';
23
- font-weight: 800;
24
- src:
25
- local('Pretendard ExtraBold'),
26
- url(podo-ui/scss/typo/font/Pretendard-ExtraBold.woff2) format('woff2');
27
- font-display: swap;
28
- }
29
-
30
- @font-face {
31
- font-family: 'Pretendard';
32
- font-weight: 700;
33
- src:
34
- local('Pretendard Bold'),
35
- url(podo-ui/scss/typo/font/Pretendard-Bold.woff2) format('woff2');
36
- font-display: swap;
37
- }
38
-
39
- @font-face {
40
- font-family: 'Pretendard';
41
- font-weight: 600;
42
- src:
43
- local('Pretendard SemiBold'),
44
- url(podo-ui/scss/typo/font/Pretendard-SemiBold.woff2) format('woff2');
45
- font-display: swap;
46
- }
47
-
48
- @font-face {
49
- font-family: 'Pretendard';
50
- font-weight: 500;
51
- src:
52
- local('Pretendard Medium'),
53
- url(podo-ui/scss/typo/font/Pretendard-Medium.woff2) format('woff2');
54
- font-display: swap;
55
- }
56
-
57
- @font-face {
58
- font-family: 'Pretendard';
59
- font-weight: 400;
60
- src:
61
- local('Pretendard Regular'),
62
- url(podo-ui/scss/typo/font/Pretendard-Regular.woff2) format('woff2');
63
- font-display: swap;
64
- }
65
-
66
- @font-face {
67
- font-family: 'Pretendard';
68
- font-weight: 300;
69
- src:
70
- local('Pretendard Light'),
71
- url(podo-ui/scss/typo/font/Pretendard-Light.woff2) format('woff2');
72
- font-display: swap;
73
- }
74
-
75
- @font-face {
76
- font-family: 'Pretendard';
77
- font-weight: 200;
78
- src:
79
- local('Pretendard ExtraLight'),
80
- url(podo-ui/scss/typo/font/Pretendard-ExtraLight.woff2) format('woff2');
81
- font-display: swap;
82
- }
83
-
84
- @font-face {
85
- font-family: 'Pretendard';
86
- font-weight: 100;
87
- src:
88
- local('Pretendard Thin'),
89
- url(podo-ui/scss/typo/font/Pretendard-Thin.woff2) format('woff2');
90
- font-display: swap;
91
- }