fix: setting radio height

This commit is contained in:
Uyarn 2022-06-27 12:31:24 +08:00
parent 704c162e36
commit d3b81b45ea
2 changed files with 9 additions and 5 deletions

View File

@ -291,11 +291,14 @@ watchEffect(() => {
:deep(.t-radio-group.t-size-m) { :deep(.t-radio-group.t-size-m) {
min-height: 32px; min-height: 32px;
width: 100%; width: 100%;
height: auto;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
} }
:deep(.t-radio-group.t-size-m .t-radio-button) {
height: auto;
}
.setting-layout-drawer { .setting-layout-drawer {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

View File

@ -13,7 +13,7 @@
.t-jumper-jumper { .t-jumper-jumper {
.t-button + .t-button { .t-button + .t-button {
margin-left: 0 margin-left: 0;
} }
} }
.tdesign-starter-link { .tdesign-starter-link {
@ -21,16 +21,16 @@
text-decoration: none; text-decoration: none;
margin-right: 24px; margin-right: 24px;
cursor: pointer; cursor: pointer;
transition: color .2s cubic-bezier(.38,0,.24,1); transition: color 0.2s cubic-bezier(0.38, 0, 0.24, 1);
} }
.left-operation-container,.operation-container { .left-operation-container,
.operation-container {
.t-button + .t-button { .t-button + .t-button {
margin-left: var(--tdvns-spacer); margin-left: var(--tdvns-spacer);
} }
} }
.t-layout.t-layout--with-sider { .t-layout.t-layout--with-sider {
> .t-layout { > .t-layout {
flex: 1; flex: 1;
@ -199,3 +199,4 @@
.t-menu__popup { .t-menu__popup {
z-index: 1000; z-index: 1000;
} }