Fixes all lowercase issue (#3302)
This commit is contained in:
parent
184c766fa7
commit
b65b78a736
11 changed files with 377 additions and 65 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
$image-height: 160px;
|
||||
@use '../../../card-item-common';
|
||||
|
||||
|
|
@ -11,21 +10,46 @@ $image-height: 160px;
|
|||
}
|
||||
|
||||
.card-item-container {
|
||||
background-color: unset;
|
||||
border: 1px solid transparent;
|
||||
transition: all ease-in-out 300ms;
|
||||
|
||||
.overlay {
|
||||
height: $image-height;
|
||||
|
||||
position: relative;
|
||||
display: flex;
|
||||
background-color: hsl(0deg 0% 0% / 12%);
|
||||
/* TODO: Robbie fix this hack */
|
||||
.missing-img {
|
||||
position: absolute;
|
||||
left: 43%;
|
||||
top: 25%;
|
||||
align-self: center;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.card-overlay {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.card-overlay {
|
||||
height: $image-height;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
bottom: 0;
|
||||
background-color: transparent;
|
||||
position: unset !important;
|
||||
margin-bottom: 5px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.card-title {
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
|
||||
.overlay {
|
||||
.missing-img {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue