Skip to content

Commit

Permalink
fix: change border radius to 6px
Browse files Browse the repository at this point in the history
  • Loading branch information
suyuan32 committed Jan 22, 2024
1 parent 36ec810 commit 5ff1429
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Application/src/search/AppSearchFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
height: 18px;
margin-right: 0.4em;
padding-bottom: 2px;
border-radius: 2px;
border-radius: 6px;
background-color: linear-gradient(-225deg, #d5dbe4, #f8f8f8);
&:nth-child(2),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
.@{prefix-cls} {
transition: all 0.3s ease-in-out;
border-radius: 2px;
border-radius: 6px;
background-color: @component-background;
&__header {
Expand Down
2 changes: 1 addition & 1 deletion src/components/SimpleMenu/src/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
right: 30px;
margin-right: 4px;
padding: 2px 3px;
border-radius: 2px;
border-radius: 6px;
color: #fff;
font-size: 10px;
line-height: 14px;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Table/src/BasicTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export default defineComponent({
width: 100%;
margin-bottom: 16px;
padding: 12px 10px 6px;
border-radius: 2px;
border-radius: 6px;
background-color: @component-background;
}
}
Expand All @@ -397,7 +397,7 @@ export default defineComponent({
.ant-table-wrapper {
padding: 6px;
border-radius: 2px;
border-radius: 6px;
background-color: @component-background;
.ant-table-title {
Expand Down
3 changes: 2 additions & 1 deletion src/components/Table/src/components/TableImg.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,13 @@
cursor: zoom-in;
img {
border-radius: 2px;
border-radius: 6px;
}
}
.img-div {
display: inline-grid;
> .ant-image:nth-of-type(n + 2) {
display: none;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@
.ant-popover-inner-content {
padding: 4px 8px;
// border: 1px solid @error-color;
border-radius: 2px;
border-radius: 6px;
color: @error-color;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/design/public.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

::-webkit-scrollbar-thumb {
// background-color: rgba(144, 147, 153, 0.3);
border-radius: 2px;
border-radius: 6px;
// background: rgba(0, 0, 0, 0.6);
background-color: rgb(144 147 153 / 30%);
box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
width: 20px;
height: 20px;
border: 1px solid #ddd;
border-radius: 2px;
border-radius: 6px;
cursor: pointer;
svg {
Expand Down

0 comments on commit 5ff1429

Please sign in to comment.