mirror of
https://github.com/maciejpedzich/cats-album.git
synced 2024-11-27 14:25:47 +01:00
Move passed-away class to global CSS
This commit is contained in:
parent
4d2045e4e0
commit
bd27c6cfdc
BIN
public/images/ryanfurrer-skutch.jpg
Normal file
BIN
public/images/ryanfurrer-skutch.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 179 KiB |
@ -10,8 +10,9 @@ const { cat } = Astro.props;
|
||||
|
||||
<a class="card-link-wrapper" href={`/cats/${cat.id}`}>
|
||||
<div class="card is-center">
|
||||
<div class:list={['img-wrapper', { 'passed-away': cat.data.passedAway }]}>
|
||||
<div class="img-wrapper">
|
||||
<img
|
||||
class:list={[{ 'passed-away': cat.data.passedAway }]}
|
||||
src={cat.data.image.src}
|
||||
alt={cat.data.image.alt}
|
||||
loading="lazy"
|
||||
@ -74,10 +75,6 @@ const { cat } = Astro.props;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.passed-away > img {
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
.card span.rip {
|
||||
display: block;
|
||||
position: absolute;
|
||||
|
@ -22,6 +22,10 @@ button:focus {
|
||||
outline: var(--color-primary) solid 3px;
|
||||
}
|
||||
|
||||
img.passed-away {
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) and (max-width: 1024px) {
|
||||
.col-6-md {
|
||||
-webkit-box-flex: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user