Skip to content

Commit

Permalink
add hover to stories and music in list display
Browse files Browse the repository at this point in the history
  • Loading branch information
Franck ALARY committed Mar 8, 2024
1 parent efd4a25 commit 274631f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/App/Components/Table/Table.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
margin: 0 15px 0 15px;
border-bottom: 1px solid $white60;
}

.cellGroupButton {
font-size: 14px;
}
Expand Down Expand Up @@ -232,25 +233,35 @@
align-items: center;
justify-content: flex-start;
}

.groupListImage {
border-radius: 10px;
flex: 0 1 160px;
width: 160px;
height: auto;
margin: 30px;
}

.listContainer {
flex: 0 1 100%;
overflow: hidden;
}

.list {
cursor: pointer;
padding: 4px;
overflow-wrap: break-word;
transition: color 0.3s;
}
.listSelected {

.list:hover {
color: $white;
}

.listSelected, .listSelected:hover {
color: $orange;
}

.listSelected:before {
display: inline-block;
padding-right: 10px;
Expand Down

0 comments on commit 274631f

Please sign in to comment.