@gitlab/ui 64.24.0 → 64.24.1

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ * Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ * Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ * Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
  */
5
5
 
6
6
  export const BLACK = "#fff";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ * Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
  */
5
5
 
6
6
  export const BLACK = "#000";
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ // Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
 
5
5
  $red-950: #fff4f3;
6
6
  $red-900: #fcf1ef;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Fri, 28 Jul 2023 17:19:09 GMT
3
+ // Generated on Mon, 31 Jul 2023 07:09:07 GMT
4
4
 
5
5
  $brand-gray-05: #2b2838 !default;
6
6
  $brand-gray-04: #45424d !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "64.24.0",
3
+ "version": "64.24.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -5,3 +5,26 @@
5
5
  @include gl-focus;
6
6
  }
7
7
  }
8
+
9
+ // Make size of focus border on indicator and prev/next button equal to themselves
10
+ .carousel-indicators li {
11
+ @include gl-border-top-0;
12
+ @include gl-border-bottom-0;
13
+ margin-bottom: 10px;
14
+ }
15
+
16
+ .carousel-control-prev {
17
+ margin-left: 7%;
18
+ }
19
+
20
+ .carousel-control-next {
21
+ margin-right: 7%;
22
+ }
23
+
24
+ .carousel-control-prev,
25
+ .carousel-control-next {
26
+ width: auto;
27
+ top: 50%;
28
+ bottom: auto;
29
+ transform: translateY(-50%);
30
+ }