@nutui/nutui 3.1.10-beta.1 → 3.1.11-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +2 -2
  3. package/dist/nutui.d.ts +6 -6
  4. package/dist/nutui.es.js +1643 -1116
  5. package/dist/nutui.umd.js +1708 -1181
  6. package/dist/packages/_es/ActionSheet.js +10 -12
  7. package/dist/packages/_es/Address.js +31 -33
  8. package/dist/packages/_es/Avatar.js +5 -4
  9. package/dist/packages/_es/BackTop.js +5 -4
  10. package/dist/packages/_es/Badge.js +5 -4
  11. package/dist/packages/_es/Barrage.js +9 -8
  12. package/dist/packages/_es/Button.js +6 -5
  13. package/dist/packages/_es/Calendar.js +14 -16
  14. package/dist/packages/_es/Cell.js +5 -4
  15. package/dist/packages/_es/CellGroup.js +8 -7
  16. package/dist/packages/_es/Checkbox.js +3 -3
  17. package/dist/packages/_es/CheckboxGroup.js +2 -2
  18. package/dist/packages/_es/CircleProgress.js +5 -4
  19. package/dist/packages/_es/Col.js +5 -4
  20. package/dist/packages/_es/Collapse.js +8 -7
  21. package/dist/packages/_es/CollapseItem.js +6 -8
  22. package/dist/packages/_es/CountDown.js +5 -7
  23. package/dist/packages/_es/CountUp.js +26 -28
  24. package/dist/packages/_es/DatePicker.js +11 -13
  25. package/dist/packages/_es/Dialog.js +14 -25
  26. package/dist/packages/_es/Divider.js +5 -4
  27. package/dist/packages/_es/Drag.js +5 -4
  28. package/dist/packages/_es/Elevator.js +19 -21
  29. package/dist/packages/_es/FixedNav.js +9 -8
  30. package/dist/packages/_es/Icon.js +40 -6
  31. package/dist/packages/_es/ImagePreview.js +12 -13
  32. package/dist/packages/_es/InfiniteLoading.js +5 -7
  33. package/dist/packages/_es/Input.js +10 -9
  34. package/dist/packages/_es/InputNumber.js +8 -15
  35. package/dist/packages/_es/Layout.js +2 -2
  36. package/dist/packages/_es/Menu.js +203 -0
  37. package/dist/packages/_es/MenuItem.js +18 -171
  38. package/dist/packages/_es/Navbar.js +7 -6
  39. package/dist/packages/_es/NoticeBar.js +9 -11
  40. package/dist/packages/_es/Notify.js +10 -12
  41. package/dist/packages/_es/NumberKeyboard.js +5 -4
  42. package/dist/packages/_es/OverLay.js +5 -7
  43. package/dist/packages/_es/Pagination.js +7 -6
  44. package/dist/packages/_es/Picker.js +12 -14
  45. package/dist/packages/_es/Popover.js +10 -12
  46. package/dist/packages/_es/Popup.js +9 -11
  47. package/dist/packages/_es/Price.js +33 -14
  48. package/dist/packages/_es/Progress.js +5 -4
  49. package/dist/packages/_es/Radio.js +20 -7
  50. package/dist/packages/_es/RadioGroup.js +7 -3
  51. package/dist/packages/_es/Range.js +13 -15
  52. package/dist/packages/_es/Rate.js +8 -7
  53. package/dist/packages/_es/Row.js +5 -4
  54. package/dist/packages/_es/SearchBar.js +56 -55
  55. package/dist/packages/_es/ShortPassword.js +8 -7
  56. package/dist/packages/_es/Signature.js +5 -4
  57. package/dist/packages/_es/Sku.js +533 -0
  58. package/dist/packages/_es/Step.js +14 -11
  59. package/dist/packages/_es/Steps.js +2 -2
  60. package/dist/packages/_es/Swipe.js +5 -7
  61. package/dist/packages/_es/Swiper.js +12 -11
  62. package/dist/packages/_es/SwiperItem.js +5 -4
  63. package/dist/packages/_es/Switch.js +5 -4
  64. package/dist/packages/_es/TabPane.js +5 -4
  65. package/dist/packages/_es/Tabbar.js +5 -4
  66. package/dist/packages/_es/TabbarItem.js +9 -8
  67. package/dist/packages/_es/Tabs.js +43 -18
  68. package/dist/packages/_es/Tag.js +16 -18
  69. package/dist/packages/_es/TextArea.js +6 -5
  70. package/dist/packages/_es/TimeDetail.js +5 -7
  71. package/dist/packages/_es/TimePannel.js +5 -7
  72. package/dist/packages/_es/TimeSelect.js +5 -4
  73. package/dist/packages/_es/Toast.js +10 -12
  74. package/dist/packages/_es/Uploader.js +165 -89
  75. package/dist/packages/_es/Video.js +5 -7
  76. package/dist/packages/_es/component.js +1 -1
  77. package/dist/packages/_es/index.js +1 -1
  78. package/dist/packages/_es/index2.js +1 -1
  79. package/dist/packages/_es/plugin-vue_export-helper.js +12 -0
  80. package/dist/packages/_es/pxCheck.js +1 -1
  81. package/dist/packages/_es/raf.js +1 -1
  82. package/dist/packages/_es/style.css +160 -0
  83. package/dist/packages/button/index.scss +3 -0
  84. package/dist/packages/checkbox/index.scss +2 -0
  85. package/dist/packages/dialog/index.scss +2 -1
  86. package/dist/packages/menu/index.scss +70 -4
  87. package/dist/packages/price/index.scss +40 -3
  88. package/dist/packages/progress/index.scss +2 -0
  89. package/dist/packages/radio/index.scss +34 -4
  90. package/dist/packages/radiogroup/index.scss +20 -0
  91. package/dist/packages/searchbar/index.scss +35 -30
  92. package/dist/packages/sku/index.scss +147 -0
  93. package/dist/packages/tabs/index.scss +47 -19
  94. package/dist/packages/tag/index.scss +2 -1
  95. package/dist/packages/uploader/index.scss +94 -8
  96. package/dist/style.css +1 -1
  97. package/dist/style.es.js +2 -1
  98. package/dist/styles/mixins/index.scss +0 -4
  99. package/dist/styles/themes/default.scss +29 -30
  100. package/dist/styles/variables.scss +46 -6
  101. package/package.json +1 -1
  102. package/dist/packages/_es/Tab.js +0 -178
  103. package/dist/packages/_es/TabPanel.js +0 -29
  104. package/dist/packages/_es/index.vue_vue&type=script&lang.js +0 -44
  105. package/dist/packages/tab/index.scss +0 -182
  106. package/dist/packages/tabpanel/index.scss +0 -2
@@ -5,6 +5,7 @@
5
5
  width: $dialog-width;
6
6
  min-height: 156px;
7
7
  padding: 28px 24px 16px 24px;
8
+ box-sizing: border-box;
8
9
 
9
10
  &__header {
10
11
  display: block;
@@ -34,7 +35,7 @@
34
35
  justify-content: space-around;
35
36
 
36
37
  .nut-button {
37
- flex: 1;
38
+ min-width: 100px;
38
39
  }
39
40
 
40
41
  &-cancel {
@@ -1,7 +1,73 @@
1
1
  .nut-menu {
2
- background: $white;
3
- display: flex;
4
- align-items: center;
5
2
  position: relative;
6
- height: 46px;
3
+ font-size: 14px;
4
+ color: #1a1a1a;
5
+
6
+ .title-list {
7
+ display: flex;
8
+ line-height: 46px;
9
+ align-items: center;
10
+ background-color: #fff;
11
+ border-bottom: 1px solid #eaf0fb;
12
+
13
+ .title {
14
+ flex: 1;
15
+ text-align: center;
16
+
17
+ &.is-active {
18
+ font-weight: 600;
19
+ }
20
+
21
+ &.disabled {
22
+ color: #999;
23
+ }
24
+
25
+ [class*='nut-icon-arrow'] {
26
+ vertical-align: middle;
27
+ margin-right: 2px;
28
+ }
29
+ }
30
+ }
31
+
32
+ %itemCommon {
33
+ position: absolute;
34
+ left: 0;
35
+ width: 100%;
36
+ padding-top: 12px;
37
+ padding-bottom: 12px;
38
+ border-radius: 0 0 12px 12px;
39
+ background-color: #fff;
40
+ }
41
+
42
+ .option-list {
43
+ @extend %itemCommon;
44
+ max-height: 214px;
45
+ overflow-y: auto;
46
+
47
+ ul {
48
+ display: flex;
49
+ flex-wrap: wrap;
50
+ list-style: none;
51
+ margin: 0;
52
+ padding: 0;
53
+ }
54
+
55
+ li {
56
+ line-height: 38px;
57
+ padding-left: 24px;
58
+ box-sizing: border-box;
59
+
60
+ .nut-icon-Check {
61
+ vertical-align: middle;
62
+ margin-right: 6px;
63
+ }
64
+ }
65
+ }
66
+
67
+ .customer-item {
68
+ @extend %itemCommon;
69
+ padding-left: 24px;
70
+ padding-right: 24px;
71
+ box-sizing: border-box;
72
+ }
7
73
  }
@@ -5,9 +5,9 @@
5
5
  &--symbol {
6
6
  display: inline-block;
7
7
  font-size: $font-size-3;
8
- margin-right: 4px;
8
+ // margin-right: 4px;
9
9
  }
10
- &--big {
10
+ &--large {
11
11
  display: inline-block;
12
12
  font-size: $price-big-size;
13
13
  }
@@ -15,8 +15,45 @@
15
15
  display: inline-block;
16
16
  font-size: $price-big-size;
17
17
  }
18
+ // &--small {
19
+ // display: inline-block;
20
+ // font-size: $font-size-4;
21
+ // }
22
+
23
+ &--decimal-large {
24
+ display: inline-block;
25
+ font-size: $price-decimal-big-size;
26
+ }
27
+ &--symbol-large {
28
+ display: inline-block;
29
+ font-size: $price-symbol-big-size;
30
+ }
31
+ &--normal {
32
+ display: inline-block;
33
+ font-size: $price-medium-size;
34
+ }
35
+ &--decimal-normal {
36
+ display: inline-block;
37
+ font-size: $price-decimal-medium-size;
38
+ }
39
+ &--symbol-normal {
40
+ display: inline-block;
41
+ font-size: $price-symbol-medium-size;
42
+ }
18
43
  &--small {
19
44
  display: inline-block;
20
- font-size: $font-size-4;
45
+ font-size: $price-small-size;
46
+ }
47
+ &--decimal-small {
48
+ display: inline-block;
49
+ font-size: $price-decimal-small-size;
50
+ }
51
+ &--symbol-small {
52
+ display: inline-block;
53
+ font-size: $price-symbol-small-size;
21
54
  }
55
+ // &--decimal--big {
56
+ // display: inline-block;
57
+ // font-size: $price-medium-size;
58
+ // }
22
59
  }
@@ -85,6 +85,7 @@
85
85
  padding: 0 5px;
86
86
  font-size: 13px;
87
87
  line-height: 1;
88
+ min-width: 35px;
88
89
  }
89
90
  .nut-progress-insidetext {
90
91
  padding: 3px 5px 3px 6px;
@@ -93,6 +94,7 @@
93
94
  position: absolute;
94
95
  transition: all 0.4s;
95
96
  top: -42%;
97
+ min-width: 0px;
96
98
  }
97
99
  .nut-icon-success,
98
100
  .nut-icon-fail {
@@ -1,23 +1,53 @@
1
1
  .nut-radio {
2
2
  display: flex;
3
3
  align-items: center;
4
+ flex-shrink: 0;
5
+
6
+ &:last-child {
7
+ margin-bottom: 0 !important;
8
+ margin-right: 0 !important;
9
+ }
10
+
4
11
  &--reverse {
5
- flex-direction: row-reverse;
6
12
  .nut-radio__label {
7
13
  margin-right: 15px;
8
14
  margin-left: 0;
9
15
  }
10
16
  }
17
+
18
+ &__button {
19
+ display: inline-flex;
20
+ align-items: center;
21
+ padding: 5px 18px;
22
+ font-size: 12px;
23
+ background: #f6f7f9;
24
+ border-radius: 15px;
25
+ color: $radio-label-font-color;
26
+ box-sizing: border-box;
27
+ &--active {
28
+ background: $radio-label-button-background;
29
+ color: $radio-label-font-active-color;
30
+ border: 1px solid $radio-label-button-border-color;
31
+ }
32
+ &--disabled {
33
+ color: $radio-label-disable-color;
34
+ border: none;
35
+ }
36
+ }
37
+
11
38
  &__label {
12
39
  margin-left: 15px;
13
- font-size: 16px;
14
- color: $radio-label-color;
40
+ font-size: 14px;
41
+ color: $radio-label-font-color;
15
42
  &--disabled {
16
43
  color: $radio-label-disable-color;
17
44
  }
18
45
  }
46
+
19
47
  &__icon {
20
- color: $primary-color;
48
+ color: $radio-label-font-active-color;
49
+ transition-duration: 0.3s;
50
+ transition-property: color, border-color, background-color;
21
51
  }
22
52
  &__icon--unchecked {
23
53
  color: $radio-icon-disable-color;
@@ -1,2 +1,22 @@
1
1
  .nut-radiogroup {
2
+ display: inline-block;
3
+ .nut-radio {
4
+ margin-bottom: 5px;
5
+ }
6
+ &--vertical {
7
+ }
8
+ &--horizontal {
9
+ .nut-radio {
10
+ display: inline-flex;
11
+ margin-right: 10px;
12
+ &--round {
13
+ .nut-radio__label {
14
+ margin: 0 6px;
15
+ }
16
+ }
17
+ &--button {
18
+ // ...
19
+ }
20
+ }
21
+ }
2
22
  }
@@ -1,21 +1,40 @@
1
1
  .nut-searchbar {
2
2
  display: flex;
3
3
  align-items: center;
4
- .search-input {
4
+ width: 100%;
5
+ padding: 9px 16px;
6
+ background: $searchbar-background;
7
+ box-sizing: border-box;
8
+ &__search-input {
5
9
  display: flex;
6
10
  align-items: center;
7
11
  width: 100%;
8
12
  height: 32px;
9
13
  flex: 1;
10
14
  padding: 0 0 0 13px;
11
- background-color: #fff;
12
15
  border-radius: 16px;
13
16
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
17
+ background: $searchbar-input-background;
14
18
 
15
- .input-inner {
19
+ .nut-searchbar__input-inner {
16
20
  display: flex;
17
21
  position: relative;
18
- .input-clear {
22
+ width: 100%;
23
+ > taro-form-core {
24
+ width: 100%;
25
+ }
26
+ form {
27
+ display: flex;
28
+ align-items: center;
29
+ width: 100%;
30
+ }
31
+ input {
32
+ width: 100%;
33
+ height: 100%;
34
+ min-width: 214px;
35
+ padding-left: 4px;
36
+ }
37
+ .nut-searchbar__input-clear {
19
38
  display: flex;
20
39
  justify-content: center;
21
40
  align-items: center;
@@ -26,7 +45,8 @@
26
45
  width: 16px;
27
46
  height: 16px;
28
47
  margin-top: -8px;
29
- & .nut-icon-mask-close {
48
+ margin-right: 10px;
49
+ & .nut-searchbar__nut-icon-mask-close {
30
50
  color: rgb(204, 204, 204);
31
51
  &:hover {
32
52
  cursor: pointer;
@@ -36,19 +56,19 @@
36
56
  }
37
57
  }
38
58
 
39
- .iptleft-search-icon {
40
- margin-left: 12px;
59
+ .nut-searchbar__iptleft-search-icon {
41
60
  margin-right: 6px;
42
61
  width: 14px;
43
62
  height: 14px;
44
63
  }
45
64
 
46
- .iptright-sarch-icon {
65
+ .nut-searchbar__iptright-sarch-icon {
66
+ margin-right: 12px;
47
67
  }
48
68
 
49
- .input-bar {
50
- width: 200px;
51
- height: 32px;
69
+ .nut-searchbar__input-bar {
70
+ width: 100%;
71
+ height: 36px;
52
72
  flex: 1;
53
73
  padding: 0;
54
74
  margin: 0;
@@ -60,34 +80,19 @@
60
80
  }
61
81
  }
62
82
 
63
- .left-search-icon {
83
+ &__left-search-icon {
64
84
  margin-right: 8px;
65
85
  }
66
86
 
67
- .search-icon {
87
+ &__search-icon {
68
88
  display: flex;
69
89
  justify-content: center;
70
90
  align-items: center;
71
91
  }
72
92
 
73
- .right-search-icon {
93
+ &__right-search-icon {
74
94
  margin-left: 16px;
75
- }
76
-
77
- .btn-right {
78
- display: flex;
79
- align-items: center;
80
- justify-content: center;
81
- margin-left: 12px;
82
95
  font-size: 14px;
83
- color: #e1251b;
84
- }
85
-
86
- a {
87
- text-decoration: none;
88
- }
89
-
90
- .nut-icon {
91
- vertical-align: middle;
96
+ color: $searchbar-right-out-color;
92
97
  }
93
98
  }
@@ -0,0 +1,147 @@
1
+ .nut-sku {
2
+ height: 100%;
3
+ display: flex;
4
+ flex-direction: column;
5
+ padding: 0px;
6
+ background: $white;
7
+ &-header {
8
+ height: 100px;
9
+ display: flex;
10
+ flex-shrink: 0;
11
+ margin-top: 18px;
12
+ padding: 0 18px;
13
+ > img {
14
+ width: 100px;
15
+ height: 100px;
16
+ flex-shrink: 0;
17
+ margin-right: 12px;
18
+ }
19
+ &-right {
20
+ flex: 1;
21
+ display: flex;
22
+ flex-direction: column;
23
+ justify-content: flex-end;
24
+ &-extra {
25
+ font-size: 12px;
26
+ color: $text-color;
27
+ }
28
+ }
29
+ }
30
+ &-content {
31
+ flex: 1;
32
+ overflow-y: auto;
33
+ overflow-x: hidden;
34
+ &::-webkit-scrollbar {
35
+ display: none;
36
+ }
37
+ margin-top: 24px;
38
+ padding: 0 18px;
39
+ }
40
+ &-select {
41
+ &-item {
42
+ display: flex;
43
+ flex-direction: column;
44
+ &-title {
45
+ height: 13px;
46
+ font-weight: bold;
47
+ font-size: 13px;
48
+ color: $black;
49
+ margin-bottom: 18px;
50
+ }
51
+ &-skus {
52
+ display: flex;
53
+ flex-wrap: wrap;
54
+ &-sku {
55
+ margin-right: 12px;
56
+ height: 30px;
57
+ line-height: 30px;
58
+ padding: 0 18px;
59
+ border-radius: 15px;
60
+ font-size: 11px;
61
+ color: $black;
62
+ flex-shrink: 0;
63
+ margin-bottom: 12px;
64
+ background: rgba(242, 242, 242, 1);
65
+ border: 1px solid rgba(242, 242, 242, 1);
66
+
67
+ &.active {
68
+ background: rgba(252, 237, 235, 1);
69
+ border: $sku-item-border;
70
+ color: $primary-color;
71
+ }
72
+ &.disable {
73
+ color: $text-color;
74
+ text-decoration: $sku-item-disable-line;
75
+ }
76
+ }
77
+ }
78
+ }
79
+ }
80
+ &-stepper {
81
+ display: flex;
82
+ justify-content: space-between;
83
+ margin: 10px 0 30px;
84
+ &-title {
85
+ font-weight: bold;
86
+ font-size: 13px;
87
+ color: $black;
88
+ margin-right: 12px;
89
+ }
90
+ &-limit {
91
+ flex: 1;
92
+ display: flex;
93
+ align-items: center;
94
+
95
+ font-size: 12px;
96
+ color: $text-color;
97
+ }
98
+ &-count {
99
+ display: flex;
100
+ align-items: center;
101
+ &-lowestBuy {
102
+ font-size: 12px;
103
+ color: $primary-color;
104
+ }
105
+ }
106
+ }
107
+ &-operate {
108
+ width: 100%;
109
+ &-desc {
110
+ display: block;
111
+ width: 100%;
112
+ padding: 10px 0;
113
+ text-align: center;
114
+ background: #fbf9da;
115
+ color: #de6a1c;
116
+ font-size: 12px;
117
+ }
118
+ &-btn {
119
+ height: 54px;
120
+ width: 100%;
121
+ display: flex;
122
+ justify-content: space-between;
123
+ align-items: center;
124
+ background: $white;
125
+ text-align: center;
126
+ padding: 0 18px;
127
+ box-sizing: border-box;
128
+ &-item {
129
+ width: 100%;
130
+ height: 40px;
131
+ line-height: 40px;
132
+ margin-right: 18px;
133
+ background: $sku-opetate-bg-default;
134
+ border-radius: 21px;
135
+ font-size: 15px;
136
+ color: $white;
137
+ &:last-child {
138
+ margin-right: 0;
139
+ }
140
+ }
141
+
142
+ &-buy {
143
+ background: $sku-opetate-bg-buy;
144
+ }
145
+ }
146
+ }
147
+ }
@@ -20,15 +20,32 @@
20
20
  &-item {
21
21
  height: $tabs-vertical-titles-item-height;
22
22
  flex: none;
23
+ &__smile {
24
+ transition: width 0.3s ease;
25
+ }
26
+ &__line {
27
+ bottom: none;
28
+ transform: translate(0, -50%);
29
+ transition: height 0.3s ease;
30
+ width: 0;
31
+ height: 0;
32
+ }
23
33
  &.active {
24
- &::before {
25
- right: 0;
26
- bottom: 0;
34
+ background-color: #fff;
35
+
36
+ .nut-tabs__titles-item__line {
37
+ left: 10px;
38
+ width: 3px;
39
+ background: $tabs-vertical-tab-line-color;
40
+ height: $tabs-vertical-titles-item-active-line-height;
41
+ }
42
+ .nut-tabs__titles-item__smile {
43
+ right: -2px;
44
+ bottom: 2px;
27
45
  left: auto;
28
- width: 11px;
29
- height: 10px;
30
- background-size: 100% 100%;
31
- background-image: url('https://img12.360buyimg.com/imagetools/jfs/t1/197875/38/105/620/60ffcd30E34877e77/54c3dd9fe0a5ab76.png');
46
+ width: 3px;
47
+ transform: rotate(320deg);
48
+ height: $tabs-vertical-titles-item-active-line-height;
32
49
  }
33
50
  }
34
51
  }
@@ -58,11 +75,9 @@
58
75
  &.smile {
59
76
  .nut-tabs__titles-item {
60
77
  &.active {
61
- &::before {
62
- width: 12px;
63
- height: 4px;
64
- background-size: 100% 100%;
65
- background-image: url('https://img12.360buyimg.com/imagetools/jfs/t1/127200/40/18747/536/5fb36b5aE61cac2d8/638032e8da9b93f4.png');
78
+ .nut-tabs__titles-item__smile {
79
+ width: 20px;
80
+ height: 8px;
66
81
  }
67
82
  }
68
83
  }
@@ -90,26 +105,39 @@
90
105
  }
91
106
  text-align: center;
92
107
  }
93
- &::before {
108
+ &__smile,
109
+ &__line {
94
110
  position: absolute;
95
111
  transition: width 0.3s ease;
96
112
  width: 0;
113
+ height: 0;
97
114
  content: ' ';
115
+ bottom: 15%;
116
+ left: 50%;
117
+ transform: translate(-50%, 0);
118
+ overflow: hidden;
119
+ }
120
+
121
+ &__smile {
122
+ .nut-icon {
123
+ position: absolute;
124
+ font-size: 12px;
125
+ width: 100%;
126
+ height: 100%;
127
+ color: $tabs-tab-smile-color;
128
+ }
98
129
  }
130
+
99
131
  &.disabled {
100
132
  color: $disable-color;
101
133
  }
102
134
  &.active {
103
135
  font-weight: 600;
104
- &::before {
105
- position: absolute;
106
- bottom: 15%;
107
- left: 50%;
108
- transform: translateX(-50%);
136
+ .nut-tabs__titles-item__line {
109
137
  content: ' ';
110
138
  width: $tabs-horizontal-titles-item-active-line-width;
111
139
  height: 3px;
112
- background: $tabs-tab-line;
140
+ background: $tabs-horizontal-tab-line-color;
113
141
  }
114
142
  }
115
143
  }
@@ -3,6 +3,7 @@
3
3
  display: inline-flex;
4
4
  align-items: center;
5
5
  font-size: $tag-font-size;
6
+ border-radius: $tag-default-border-radius;
6
7
  &--default {
7
8
  color: $tag-default-color;
8
9
  background: $tag-default-background-color;
@@ -34,7 +35,7 @@
34
35
  }
35
36
 
36
37
  &--round {
37
- border-radius: 8px;
38
+ border-radius: $tag-round-border-radius;
38
39
  }
39
40
 
40
41
  &--mark {