@cdc/editor 4.26.1 → 4.26.2

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.
@@ -14,7 +14,7 @@
14
14
  display: grid;
15
15
  gap: 1em;
16
16
  &.category_general {
17
- grid-template-columns: repeat(5, 160px);
17
+ grid-template-columns: repeat(6, 160px);
18
18
  }
19
19
  &.category_charts {
20
20
  grid-template-columns: repeat(7, 160px);
package/vite.config.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import GenerateViteConfig from '@cdc/core/generateViteConfig.js'
2
2
  import { moduleName } from './package.json'
3
3
 
4
- export default GenerateViteConfig(moduleName)
4
+ // Editor doesn't want the default padding CSS
5
+ export default GenerateViteConfig(moduleName, {}, {}, { css: '' })