Add styling and interactivity.

This commit is contained in:
Dermot Duffy
2022-03-19 09:00:21 -07:00
parent b9cef866c9
commit 83a25e5b79
3 changed files with 131 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
:host {
display: block;
width: 100%;
height: 100%;
}
img {
width: 75px;
height: 75px;
box-shadow: 0px 0px 20px 5px var(--primary-background-color);
display: block;
border-radius: 5px;
transition: transform 0.2s linear;
}
img:hover {
transform: scale(1.04);
}
+14 -2
View File
@@ -1,7 +1,19 @@
@use "vis-timeline/dist/vis-timeline-graph2d.css";
@use 'vis-timeline/dist/vis-timeline-graph2d.css';
:host {
width: 100%;
height: 100%;
display: block;
}
}
.vis-item {
border-color: var(--primary-color);
}
.vis-item.vis-box {
border-style: hidden;
}
.vis-item .vis-item-content {
padding: 0px;
}