Skip to content

Commit f2f04ea

Browse files
dongfengtaoadmindongfengtao
authored andcommitted
fix: new skin
1 parent 2316518 commit f2f04ea

15 files changed

Lines changed: 33 additions & 33 deletions

File tree

examples/nextjs-react18/styles/Home.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
.code {
6060
background: #F5F5F7;
61-
border-radius: 4px;
61+
border-radius: 2px;
6262
padding: 0.75rem;
6363
font-size: 12px;
6464
font-family: 'Fira Code Variable', 'Fira Code', Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
@@ -80,7 +80,7 @@
8080
color: inherit;
8181
text-decoration: none;
8282
border: 1px solid #D1D1D6;
83-
border-radius: 4px;
83+
border-radius: 2px;
8484
transition: color 0.15s ease, border-color 0.15s ease;
8585
max-width: 300px;
8686
}

examples/ng-ui-components/src/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
padding: 6px 16px;
88
color: #fff !important;
99
font-size: 14px !important;
10-
border-radius: 4px;
10+
border-radius: 2px;
1111
background: #2F54EB;
1212
border: none;
1313
box-shadow: none;

examples/react-ui-components/src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
padding: 6px 16px;
55
color: #fff !important;
66
font-size: 14px !important;
7-
border-radius: 4px;
7+
border-radius: 2px;
88
background: #2F54EB;
99
border: none;
1010
box-shadow: none;

examples/react18-ui-components/src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
padding: 6px 16px;
55
color: #fff !important;
66
font-size: 14px !important;
7-
border-radius: 4px;
7+
border-radius: 2px;
88
background: #2F54EB;
99
border: none;
1010
box-shadow: none;

examples/vue-ui-components/vue3/src/assets/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
padding: 6px 16px;
55
color: #fff !important;
66
font-size: 14px !important;
7-
border-radius: 4px;
7+
border-radius: 2px;
88
background: #2F54EB;
99
border: none;
1010
box-shadow: none;

packages/guard-core-v4/shim-antd4/index.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@background-color-base: #F5F5F7;
1616
@component-background: #FFFFFF;
1717
@font-size-base: 14px;
18-
@border-radius-base: 4px;
18+
@border-radius-base: 2px;
1919
@btn-font-weight: 500;
2020
@input-hover-border-color: #2F54EB;
2121

packages/guard-core-v4/src/Guard/styles.less

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@
2424
--guard-bg-strong: #EBEBED;
2525
--guard-border: #D1D1D6;
2626
--guard-border-strong: #D1D1D6;
27-
--guard-radius-tag: 4px;
28-
--guard-radius-button: 4px;
27+
--guard-radius-tag: 2px;
28+
--guard-radius-button: 2px;
2929
--guard-radius-input: 4px;
30-
--guard-radius-dropdown: 4px;
30+
--guard-radius-dropdown: 2px;
3131
--guard-radius-control: var(--guard-radius-input);
32-
--guard-radius-surface: 4px;
33-
--guard-radius-selectable: 4px;
34-
--guard-radius-menu: 4px;
35-
--guard-radius-menu-compact: 4px;
36-
--guard-radius-card: 4px;
37-
--guard-radius-table: 4px;
38-
--guard-radius-dialog: 4px;
39-
--guard-radius-popover: 4px;
40-
--guard-radius-bubble: 4px;
41-
--guard-radius-chat: 4px;
32+
--guard-radius-surface: 2px;
33+
--guard-radius-selectable: 2px;
34+
--guard-radius-menu: 2px;
35+
--guard-radius-menu-compact: 2px;
36+
--guard-radius-card: 2px;
37+
--guard-radius-table: 2px;
38+
--guard-radius-dialog: 2px;
39+
--guard-radius-popover: 2px;
40+
--guard-radius-bubble: 2px;
41+
--guard-radius-chat: 2px;
4242
--guard-radius-sm: var(--guard-radius-tag);
4343
--guard-radius-md: var(--guard-radius-dropdown);
4444
--guard-radius-lg: var(--guard-radius-surface);
45-
--guard-radius-xl: 4px;
45+
--guard-radius-xl: 2px;
4646
--guard-focus-ring: rgba(47, 84, 235, 0.16);
4747
--guard-control-focus-border: var(--guard-primary);
4848
--guard-danger-ring: rgba(220, 38, 38, 0.16);
@@ -332,7 +332,7 @@
332332
}
333333
.title {
334334
color: #1C1C1E;
335-
font-weight: 600;
335+
font-weight: 500;
336336
font-size: 18px;
337337
line-height: 24px;
338338
white-space: nowrap;
@@ -1107,7 +1107,7 @@ input {
11071107
.title {
11081108
font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
11091109
font-style: normal;
1110-
font-weight: 600;
1110+
font-weight: 500;
11111111
font-size: 18px;
11121112
line-height: 24px;
11131113
color: #1C1C1E;
@@ -1263,7 +1263,7 @@ input {
12631263
// .title {
12641264
// font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
12651265
// font-style: normal;
1266-
// font-weight: 600;
1266+
// font-weight: 500;
12671267
// font-size: 24px;
12681268
// line-height: 34px;
12691269
// color: #1C1C1E;
@@ -1390,7 +1390,7 @@ input {
13901390
color: var(--guard-text-heading);
13911391
font-family: var(--guard-font-family);
13921392
font-size: 18px;
1393-
font-weight: 600;
1393+
font-weight: 500;
13941394
line-height: 24px;
13951395
letter-spacing: 0;
13961396
}

packages/guard-core-v4/src/IdentityBinding/styles.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
line-height: 24px;
1919
color: #1C1C1E;
2020
margin-bottom: 8px;
21-
font-weight: 600;
21+
font-weight: 500;
2222
}
2323

2424
.g2-view-identity-binding-content-desc {

packages/guard-core-v4/src/IdentityBindingAsk/styles.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
line-height: 24px;
1212
color: #1C1C1E;
1313
margin-bottom: 8px;
14-
font-weight: 600;
14+
font-weight: 500;
1515
}
1616

1717
.g2-view-identity-binding-ask-content-desc {

packages/guard-core-v4/src/Invitation/AuthenticationBind/style.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.title {
1111
color: #1C1C1E;
1212
font-size: 18px;
13-
font-weight: 600;
13+
font-weight: 500;
1414
line-height: 24px;
1515
margin-bottom: 8px;
1616
margin-top: 40px;

0 commit comments

Comments
 (0)