42 lines
540 B
SCSS
42 lines
540 B
SCSS
@import '~styles/constants.scss';
|
|
|
|
.container {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
padding-bottom: 40px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.atlasLink {
|
|
text-decoration: none;
|
|
color: $textColor;
|
|
}
|
|
|
|
.description {
|
|
color: #aaa;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 20px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.title {
|
|
font-weight: normal;
|
|
font-size: 15px;
|
|
color: $textColor;
|
|
|
|
margin: 0;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: 13px;
|
|
color: #ccc;
|
|
}
|