Files
farmOS-dev/web/themes/gin/styles/components/revisions.scss
2024-12-10 15:08:16 +01:00

19 lines
315 B
SCSS

.revision-current {
background-color: transparent;
td:first-of-type {
position: relative;
&::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 1px;
height: 100%;
border-left: 6px solid var(--gin-color-green);
}
}
}