@platformatic/ui-components 0.1.73 → 0.1.74

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@platformatic/ui-components",
3
3
  "description": "Platformatic UI Components",
4
- "version": "0.1.73",
4
+ "version": "0.1.74",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -57,7 +57,7 @@ function Sidebar (props) {
57
57
  <div className={styles.titleCollapsed} data-testid='lateral-bar-title'>
58
58
  {title}
59
59
  </div>
60
- <HorizontalSeparator marginBottom={2} marginTop={2} />
60
+ <HorizontalSeparator marginBottom={0} marginTop={0} />
61
61
  <div className={styles.bottom}>
62
62
  <button type='button' className={styles.buttonSettings} onClick={onClickSettings}>
63
63
  <Icons.GearIcon color='white' size='large' />
@@ -6,10 +6,10 @@
6
6
  @apply max-w-[96px] text-center;
7
7
  }
8
8
  .buttonExpand {
9
- @apply border rounded-md p-1 border-white;
9
+ @apply border rounded-md p-1 border-white hover:bg-white hover:bg-opacity-20;
10
10
  }
11
11
  .buttonSettings {
12
- @apply border rounded-md p-1 border-white;
12
+ @apply border rounded-md p-1 border-white hover:bg-white hover:bg-opacity-20;
13
13
  }
14
14
  .buttonCollapse {
15
15
  @apply absolute right-[-0.875rem] border-0 z-20 bg-main-dark-blue;
@@ -20,7 +20,7 @@
20
20
  @apply text-white font-semibold pb-6;
21
21
  }
22
22
  .titleCollapsed {
23
- @apply text-white text-[10px];
23
+ @apply text-white text-[10px] pt-2 pb-6;
24
24
  }
25
25
  .buttonItem {
26
26
  @apply flex items-center justify-start border-0 rounded-md w-full py-1 hover:bg-white hover:bg-opacity-20;