Skip to content

Commit

Permalink
fix: add missing hidden attribute styles to board and board row (#8483)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored and vaadin-bot committed Jan 10, 2025
1 parent b1af9a3 commit d67dee7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/board/src/vaadin-board-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ class BoardRow extends ResizeMixin(ElementMixin(PolymerElement)) {
--medium-size: var(--vaadin-board-width-medium, 960px);
}
:host([hidden]) {
display: none !important;
}
:host ::slotted(*) {
box-sizing: border-box;
flex-grow: 1;
Expand Down
4 changes: 4 additions & 0 deletions packages/board/src/vaadin-board.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ class Board extends ElementMixin(PolymerElement) {
:host {
display: block;
}
:host([hidden]) {
display: none !important;
}
</style>
<slot></slot>
`;
Expand Down

0 comments on commit d67dee7

Please # to comment.