Skip to content

Commit 1d3dcb8

Browse files
authored
fix: setting radio height (#193)
1 parent 704c162 commit 1d3dcb8

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

src/layouts/setting.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,14 @@ watchEffect(() => {
291291
:deep(.t-radio-group.t-size-m) {
292292
min-height: 32px;
293293
width: 100%;
294-
height: auto;
295294
justify-content: space-between;
296295
align-items: center;
297296
}
298297
298+
:deep(.t-radio-group.t-size-m .t-radio-button) {
299+
height: auto;
300+
}
301+
299302
.setting-layout-drawer {
300303
display: flex;
301304
flex-direction: column;

src/style/layout.less

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313

1414
.t-jumper-jumper {
1515
.t-button + .t-button {
16-
margin-left: 0
16+
margin-left: 0;
1717
}
1818
}
1919
.tdesign-starter-link {
2020
color: var(--td-brand-color);
2121
text-decoration: none;
2222
margin-right: 24px;
2323
cursor: pointer;
24-
transition: color .2s cubic-bezier(.38,0,.24,1);
24+
transition: color 0.2s cubic-bezier(0.38, 0, 0.24, 1);
2525
}
2626

27-
.left-operation-container,.operation-container {
27+
.left-operation-container,
28+
.operation-container {
2829
.t-button + .t-button {
2930
margin-left: var(--tdvns-spacer);
3031
}
3132
}
3233

33-
3434
.t-layout.t-layout--with-sider {
3535
> .t-layout {
3636
flex: 1;
@@ -199,3 +199,4 @@
199199
.t-menu__popup {
200200
z-index: 1000;
201201
}
202+

0 commit comments

Comments
 (0)