@platformatic/ui-components 0.1.29 → 0.1.30

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.29",
4
+ "version": "0.1.30",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -6,7 +6,7 @@
6
6
  @apply flex justify-start text-white uppercase hover:cursor-pointer mb-4 tracking-[.25rem] h-[2rem];
7
7
  }
8
8
  .tab {
9
- @apply mr-4 min-w-[105px] text-center;
9
+ @apply mx-8 min-w-[105px] text-center text-sm first:ml-0 last:mr-0;
10
10
  }
11
11
  .selected-tab {
12
12
  @apply underline text-main-green underline-offset-8 font-bold;
@@ -3,7 +3,7 @@ import React from 'react'
3
3
 
4
4
  export default function Layout (props) {
5
5
  return (
6
- <div className='container mx-auto px-4 my-5 flex flex-col gap-10 h-screen'>
6
+ <div className='container mx-auto px-5 my-5 flex flex-col gap-10 h-screen'>
7
7
  {props.children}
8
8
  </div>
9
9
 
@@ -5,7 +5,12 @@ module.exports = {
5
5
  container: {
6
6
  center: true
7
7
  },
8
- extend: {},
8
+ extend: {
9
+ screens: {
10
+ 'lg': '1440px',
11
+ // => @media (min-width: 1440px) { ... }
12
+ },
13
+ },
9
14
  colors: {
10
15
  'main-green': '#21FA90',
11
16
  'dark-green': '#02783F',