Skip to content

Commit 34271f5

Browse files
committed
Change --border-radius-circle to --border-radius-full
1 parent 5556782 commit 34271f5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default {
6666
'xl': '12px',
6767
'2xl': '16px',
6868
'3xl': '24px',
69-
'full': 'var(--border-radius-circle)', // 50%
69+
'full': '99999px',
7070
},
7171
fontFamily: {
7272
sans: 'var(--fonts-regular)',

web_src/css/base.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/* other variables */
1919
--border-radius: 4px;
2020
--border-radius-medium: 6px;
21-
--border-radius-circle: 50%;
21+
--border-radius-full: 99999px;
2222
--opacity-disabled: 0.55;
2323
--height-loading: 16rem;
2424
--min-height-textarea: 132px; /* padding + 6 lines + border = calc(1.57142em + 6lh + 2px), but lh is not fully supported */
@@ -1165,7 +1165,7 @@ overflow-menu .ui.label {
11651165

11661166
.color-icon {
11671167
display: inline-block;
1168-
border-radius: var(--border-radius-circle);
1168+
border-radius: var(--border-radius-full);
11691169
height: 14px;
11701170
width: 14px;
11711171
}

web_src/css/modules/animations.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
border-width: 4px;
3232
border-style: solid;
3333
border-color: var(--color-secondary) var(--color-secondary) var(--color-secondary-dark-8) var(--color-secondary-dark-8);
34-
border-radius: var(--border-radius-circle);
34+
border-radius: var(--border-radius-full);
3535
}
3636

3737
.is-loading.loading-icon-2px::after {

web_src/css/repo.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ td .commit-summary {
790790
width: 34px;
791791
height: 34px;
792792
background-color: var(--color-timeline);
793-
border-radius: var(--border-radius-circle);
793+
border-radius: var(--border-radius-full);
794794
display: flex;
795795
float: left;
796796
margin-left: -33px;

web_src/css/repo/release-tag.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
position: absolute;
5757
left: -5.5px;
5858
top: 30px;
59-
border-radius: var(--border-radius-circle);
59+
border-radius: var(--border-radius-full);
6060
border: 2.5px solid var(--color-body);
6161
}
6262

0 commit comments

Comments
 (0)