@bloom-housing/ui-components 5.0.1-alpha.3 → 5.0.1-alpha.4
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/CHANGELOG.md +13 -0
- package/package.json +2 -2
- package/src/lists/PreferencesList.scss +13 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.1-alpha.4](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@5.0.1-alpha.3...@bloom-housing/ui-components@5.0.1-alpha.4) (2022-06-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **preferenceslist:** add storybook example without subtitle ([4a32106](https://github.com/bloom-housing/bloom/commit/4a32106d0f171822961e4dcee5ee9013ee23b329))
|
|
12
|
+
* **preferenceslist:** move ordinal at mobile bp; update text color for contrast ([b063f5d](https://github.com/bloom-housing/bloom/commit/b063f5dd0813778f1d77efa510ee3a2d788be717)), closes [#2827](https://github.com/bloom-housing/bloom/issues/2827)
|
|
13
|
+
* **preferenceslist:** move ordinal left; make other elements align horizontally ([7034cc7](https://github.com/bloom-housing/bloom/commit/7034cc76a04e8c395ae3a51b2f2c4e5cef944086)), closes [Issue#2827](https://github.com/Issue/issues/2827)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## [5.0.1-alpha.3](https://github.com/bloom-housing/bloom/compare/@bloom-housing/ui-components@5.0.1-alpha.2...@bloom-housing/ui-components@5.0.1-alpha.3) (2022-06-23)
|
|
7
20
|
|
|
8
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bloom-housing/ui-components",
|
|
3
|
-
"version": "5.0.1-alpha.
|
|
3
|
+
"version": "5.0.1-alpha.4",
|
|
4
4
|
"author": "Sean Albert <sean.albert@exygy.com>",
|
|
5
5
|
"description": "Shared user interface components for Bloom affordable housing system",
|
|
6
6
|
"homepage": "https://github.com/bloom-housing/bloom/tree/master/shared/ui-components",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"ts-jest": "^26.4.1",
|
|
109
109
|
"typesafe-actions": "^5.1.0"
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "f360ef3b7b393283704a287717939eec4e29f110"
|
|
112
112
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
.preferences-list__item {
|
|
2
2
|
.info-card__title {
|
|
3
3
|
@apply mb-0;
|
|
4
|
-
@apply ml-4;
|
|
5
4
|
|
|
6
|
-
@screen
|
|
7
|
-
|
|
5
|
+
@media (max-width: $screen-sm) {
|
|
6
|
+
margin-left: 0px;
|
|
7
|
+
margin-top: var(--bloom-s3);
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -37,7 +37,12 @@
|
|
|
37
37
|
width: 2.5rem;
|
|
38
38
|
|
|
39
39
|
@screen md {
|
|
40
|
-
margin-left: -
|
|
40
|
+
margin-left: -3rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@media (max-width: $screen-sm) {
|
|
44
|
+
margin-left: 0px;
|
|
45
|
+
float: none;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
sup {
|
|
@@ -47,17 +52,16 @@
|
|
|
47
52
|
}
|
|
48
53
|
|
|
49
54
|
.preferences-list__subtitle {
|
|
50
|
-
@apply text-gray-
|
|
55
|
+
@apply text-gray-750;
|
|
51
56
|
@apply text-tiny;
|
|
52
|
-
@apply ml-4;
|
|
53
57
|
|
|
54
|
-
@screen
|
|
55
|
-
|
|
58
|
+
@media (max-width: $screen-sm) {
|
|
59
|
+
margin-left: 0px;
|
|
56
60
|
}
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
.preferences-list__description {
|
|
60
|
-
@apply text-gray-
|
|
64
|
+
@apply text-gray-750;
|
|
61
65
|
@apply text-sm;
|
|
62
66
|
@apply mt-3;
|
|
63
67
|
}
|