mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
39 lines
552 B
SCSS
39 lines
552 B
SCSS
@import "src/styles/variables";
|
|
|
|
.wrap {
|
|
padding: $gap * 0.5 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;
|
|
}
|
|
}
|