Skip to content

Commit

Permalink
fixes and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomivirkki committed Oct 2, 2024
1 parent 758542e commit 1dbb20f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/dashboard/src/vaadin-dashboard-layout.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { DashboardLayoutMixin } from './vaadin-dashboard-layout-mixin.js';
* `--vaadin-dashboard-col-max-width` | maximum column width of the layout
* `--vaadin-dashboard-row-min-height` | minimum row height of the layout
* `--vaadin-dashboard-col-max-count` | maximum column count of the layout
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges. Must be in length units (0 is not allowed, 0px is)
*
* The following state attributes are available for styling:
*
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard/src/vaadin-dashboard-layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { DashboardLayoutMixin } from './vaadin-dashboard-layout-mixin.js';
* `--vaadin-dashboard-col-max-width` | maximum column width of the layout
* `--vaadin-dashboard-row-min-height` | minimum row height of the layout
* `--vaadin-dashboard-col-max-count` | maximum column count of the layout
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges. Must be in length units (0 is not allowed, 0px is)
*
* The following state attributes are available for styling:
*
Expand Down
1 change: 1 addition & 0 deletions packages/dashboard/src/vaadin-dashboard-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const dashboardWidgetAndSectionStyles = css`
header {
display: flex;
overflow: hidden;
}
vaadin-button {
Expand Down
1 change: 1 addition & 0 deletions packages/dashboard/src/vaadin-dashboard-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ class DashboardWidget extends DashboardItemMixin(
#content {
flex: 1;
overflow: hidden;
}
#resize-handle {
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard/src/vaadin-dashboard.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export interface DashboardI18n {
* `--vaadin-dashboard-col-max-width` | maximum column width of the dashboard
* `--vaadin-dashboard-row-min-height` | minimum row height of the dashboard
* `--vaadin-dashboard-col-max-count` | maximum column count of the dashboard
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges. Must be in length units (0 is not allowed, 0px is)
*
* The following state attributes are available for styling:
*
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard/src/vaadin-dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ import { WidgetResizeController } from './widget-resize-controller.js';
* `--vaadin-dashboard-col-max-width` | maximum column width of the dashboard
* `--vaadin-dashboard-row-min-height` | minimum row height of the dashboard
* `--vaadin-dashboard-col-max-count` | maximum column count of the dashboard
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges
* `--vaadin-dashboard-spacing` | spacing between child elements and space around its outer edges. Must be in length units (0 is not allowed, 0px is)
*
* The following state attributes are available for styling:
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ const dashboardWidgetAndSection = css`
display: flex;
align-items: center;
padding: var(--lumo-space-s) var(--lumo-space-m);
height: var(--lumo-size-m);
gap: var(--lumo-space-s);
}
Expand Down

0 comments on commit 1dbb20f

Please sign in to comment.