Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,18 @@
1
+// Single side border-radius
2
+
3
+.border-top-radius(@radius) {
4
+  border-top-right-radius: @radius;
5
+   border-top-left-radius: @radius;
6
+}
7
+.border-right-radius(@radius) {
8
+  border-bottom-right-radius: @radius;
9
+     border-top-right-radius: @radius;
10
+}
11
+.border-bottom-radius(@radius) {
12
+  border-bottom-right-radius: @radius;
13
+   border-bottom-left-radius: @radius;
14
+}
15
+.border-left-radius(@radius) {
16
+  border-bottom-left-radius: @radius;
17
+     border-top-left-radius: @radius;
18
+}