1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 22:26:41 +07:00
vault-frontend/src/components/node/NodeRelated/styles.module.scss
2022-12-26 14:03:39 +06:00

58 lines
736 B
SCSS

@import 'src/styles/variables';
@keyframes fade {
from {
opacity: 1;
}
to {
opacity: 0.2;
}
}
.wrap {
border-radius: $panel_radius;
padding: $gap 0;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto;
grid-auto-rows: auto;
grid-column-gap: $gap;
grid-row-gap: $gap;
@include tablet {
grid-template-columns: repeat(3, 1fr);
}
}
.title {
padding-left: 5px;
a {
text-decoration: none;
color: inherit;
}
}
.text {
margin-left: $gap * 0.5;
}
.placeholder {
.text {
opacity: 1;
}
.grid {
div {
background: $placeholder_bg;
animation: fade 0.5s infinite alternate;
}
}
}
.item {
border-radius: $radius;
}