Files
advanced-camera-card/src/scss/timeline-event.scss
T
2022-03-19 09:00:21 -07:00

19 lines
244 B
SCSS

:host {
display: block;
width: 100%;
height: 100%;
}
img {
width: 75px;
height: 75px;
display: block;
border-radius: 5px;
transition: transform 0.2s linear;
border: 1px solid black;
}
img:hover {
transform: scale(1.04);
}