47 lines
834 B
SCSS
47 lines
834 B
SCSS
.library-item-card {
|
|
.pgn__card {
|
|
height: 100%;
|
|
min-width: 15rem;
|
|
|
|
&::before {
|
|
border: none !important; // Remove default focus
|
|
}
|
|
|
|
&.selected:not(:focus) {
|
|
outline: 2px $gray-700 solid;
|
|
}
|
|
|
|
&.selected:focus {
|
|
outline: 3px $gray-700 solid;
|
|
}
|
|
|
|
&:not(.selected):focus {
|
|
outline: 1px $gray-200 solid;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.library-item-header {
|
|
padding: 0 .5rem 0 1.25rem;
|
|
border-top-left-radius: .375rem;
|
|
border-top-right-radius: .375rem;
|
|
|
|
.library-item-header-icon {
|
|
width: 2.3rem;
|
|
height: 2.3rem;
|
|
}
|
|
|
|
.pgn__card-header-content {
|
|
margin-top: .55rem;
|
|
}
|
|
|
|
.pgn__card-header-actions {
|
|
margin: .25rem 0 .25rem 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.badge-container {
|
|
min-height: 20px;
|
|
}
|
|
}
|