@bloom-housing/ui-components 10.0.8 → 10.0.9

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": "@bloom-housing/ui-components",
3
- "version": "10.0.8",
3
+ "version": "10.0.9",
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/ui-components",
@@ -1,4 +1,7 @@
1
1
  .drawer {
2
+ --body-height: inherit;
3
+ --content-padding: var(--bloom-s8) var(--bloom-s4) var(--bloom-s4) var(--bloom-s4);
4
+ --content-height: inherit;
2
5
  @apply flex;
3
6
  @apply flex-col;
4
7
  @apply bg-gray-200;
@@ -94,14 +97,13 @@
94
97
  .drawer__body {
95
98
  @apply overflow-y-auto;
96
99
  @apply relative;
97
- // flex: 1 1 auto;
100
+ height: var(--body-height);
98
101
  }
99
102
 
100
103
  .drawer__content {
104
+ padding: var(--content-padding);
105
+ height: var(--content-height);
101
106
  @apply m-auto;
102
- @apply px-4;
103
- @apply pt-8;
104
- @apply pb-4;
105
107
  @apply overflow-y-visible;
106
108
  }
107
109