Pairables list in progress

This commit is contained in:
Claude Brisson
2023-12-21 10:37:16 +01:00
parent fdcdd9c1a9
commit ea9e298330
11 changed files with 166 additions and 36 deletions

View File

@@ -164,7 +164,7 @@
max-width: 40vw;
border: solid 2px darkgray;
border-radius: 5px;
padding-top: 1em;
padding: 1em 0.5em;
&:before {
position: absolute;
content: attr(title);
@@ -175,6 +175,21 @@
font-size: smaller;
font-weight: bold;
}
.listitem {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
gap: 1em;
cursor: pointer;
user-select: none;
&:hover {
background-color: rgba(50, 50, 50, .2);
}
&.selected {
background-color: rgba(100,200,255,200);
cursor: grab;
}
}
}
#pairing-buttons {
display: flex;