1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/components/boris/BorisStatsGitCard/styles.module.scss
2021-03-10 14:47:04 +07:00

39 lines
550 B
SCSS

@import "src/styles/variables";
.wrap {
padding: $gap / 2 0;
border-bottom: 1px solid #333333;
&:last-child {
border-bottom: none;
}
}
.time {
font: $font_12_regular;
line-height: 17px;
color: transparentize(white, 0.7)
}
.subject {
font: $font_14_regular;
word-break: break-word;
text-decoration: none;
color: inherit;
}
.icon {
font: $font_10_semibold;
margin-right: 5px;
border-radius: 2px;
padding: 2px 0;
text-transform: uppercase;
&.open {
color: $red;
}
&.closed {
color: $green;
}
}