@uqds/pane 0.0.12-alpha.0 → 0.0.13-alpha.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uqds/pane",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13-alpha.0",
|
|
4
4
|
"description": "Pane component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"uqds",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"url": "https://github.com/uq-its-ss/design-system/issues"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@uqds/core": "^
|
|
43
|
+
"@uqds/core": "^1.0.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "07bdc5a8169d386baae8ea4ffa5b4a75fc7e9ebb"
|
|
46
46
|
}
|
package/src/scss/_component.scss
CHANGED
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
|
|
22
22
|
%pane,
|
|
23
23
|
.uq-pane {
|
|
24
|
-
padding: core.$space-
|
|
25
|
-
margin-bottom: core.$space-
|
|
24
|
+
padding: core.$space-l; // 1.8rem;
|
|
25
|
+
margin-bottom: core.$space-l; // 1.5rem;
|
|
26
26
|
|
|
27
27
|
&--shaded {
|
|
28
28
|
@include pane-shaded;
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
|
|
78
78
|
// if sub-title exists reduce margin to pull it close to title
|
|
79
79
|
&__title + &__sub-title {
|
|
80
|
-
margin-top: -(core.$space);
|
|
80
|
+
margin-top: -(core.$space-m);
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
|
package/src/scss/_global.scss
CHANGED
|
@@ -22,7 +22,7 @@ $pane-title-color: core.$uq-purple;
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
@mixin pane-vertical-spacing {
|
|
25
|
-
margin: core.$space-
|
|
25
|
+
margin: core.$space-xl core.$space-none;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
@mixin pane-dark-tint {
|
|
@@ -40,12 +40,12 @@ $pane-title-color: core.$uq-purple;
|
|
|
40
40
|
|
|
41
41
|
.uq-pane {
|
|
42
42
|
&__content {
|
|
43
|
-
padding: core.$space-
|
|
43
|
+
padding: core.$space-l core.$space-l core.$space-m core.$space-l; //1.8rem 1.8rem 1rem 1.8rem
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&__footer {
|
|
47
47
|
background-color: $pane-shaded-bg;
|
|
48
|
-
padding: core.$space-
|
|
48
|
+
padding: core.$space-l; //1.8rem;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}
|