@taiga-ui/styles 3.12.1 → 3.14.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.
- package/markup/tui-island.less +4 -2
- package/package.json +1 -1
package/markup/tui-island.less
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
.tui-island {
|
|
5
5
|
position: relative;
|
|
6
|
-
border-radius: var(--tui-radius-
|
|
6
|
+
border-radius: var(--tui-radius-xl);
|
|
7
7
|
background-color: var(--tui-base-01);
|
|
8
8
|
word-wrap: break-word;
|
|
9
9
|
text-decoration: none;
|
|
@@ -43,11 +43,13 @@
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
&_size_s {
|
|
46
|
+
--tui-radius-xl: calc(4 * var(--tui-radius-l) / 3);
|
|
46
47
|
font: var(--tui-font-text-s);
|
|
47
48
|
padding: @padding;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
&_size_m {
|
|
52
|
+
--tui-radius-xl: calc(5 * var(--tui-radius-l) / 3);
|
|
51
53
|
font: var(--tui-font-text-m);
|
|
52
54
|
padding: @padding;
|
|
53
55
|
}
|
|
@@ -168,7 +170,7 @@
|
|
|
168
170
|
width: ~'calc(100% + 1.875rem);'; // margin compensation
|
|
169
171
|
margin: @padding calc(-1rem + 1px) calc(-1rem + 1px); // 1px is compensations of border
|
|
170
172
|
border-top: 1px solid var(--tui-base-03);
|
|
171
|
-
border-radius: 0 0 var(--tui-radius-
|
|
173
|
+
border-radius: 0 0 var(--tui-radius-xl) var(--tui-radius-xl);
|
|
172
174
|
}
|
|
173
175
|
|
|
174
176
|
.tui-island_size_l &__footer-button {
|
package/package.json
CHANGED