Skip to content

Commit 5313d0d

Browse files
fix styling
1 parent 5cab1f7 commit 5313d0d

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.changeset/wicked-moles-work.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@cloudoperators/juno-ui-components": minor
3+
"@cloudoperators/juno-app-example": minor
4+
---
5+
6+
Implement hover functionality in DataGridRow Juno UI Component and implement the solution in Example App.
7+
[Issue #1015](https://github.com/cloudoperators/juno/issues/1015)

apps/example/src/components/peaks/list/PeaksListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const PeaksListItem: React.FC<PeaksListItemProps> = ({ peak, onSelect }) => {
4949
<DataGridCell onClick={openPanel}>{peak.mainrange}</DataGridCell>
5050
<DataGridCell onClick={openPanel}>{peak.region}</DataGridCell>
5151
<DataGridCell onClick={openPanel}>{peak.countries}</DataGridCell>
52-
<DataGridCell className={`pt-5 pb-5`}>
52+
<DataGridCell className={"pt-5 pb-5"}>
5353
<PeaksListItemActions peak={peak} onSelect={onSelect} />
5454
</DataGridCell>
5555
</DataGridRow>

apps/example/src/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6+
@import "@cloudoperators/juno-ui-components/juno-ui-components.css";
67
@import "tailwindcss";
78
@import "@cloudoperators/juno-ui-components/theme.css";

0 commit comments

Comments
 (0)