Added borders to release info column.

This commit is contained in:
2020-01-09 02:09:17 +01:00
parent 1ccb05613a
commit 26161abd39
2 changed files with 17 additions and 8 deletions

View File

@@ -5,7 +5,7 @@
>
<Banner :release="release" />
<div class="info">
<div class="details">
<div class="column">
<a
v-if="release.date"
@@ -95,7 +95,7 @@
</div>
</div>
<div class="column">
<div class="info column">
<h2 class="row title">{{ release.title }}</h2>
<div class="row">
@@ -256,6 +256,12 @@ export default {
box-sizing: border-box;
}
.info.column {
padding: 1rem;
border-left: solid 1px $shadow-hint;
border-right: solid 1px $shadow-hint;
}
.row {
display: flex;
align-items: center;
@@ -269,10 +275,9 @@ export default {
}
}
.info {
.details {
background: $profile;
color: $text-contrast;
margin: 0 0 1.5rem 0;
box-shadow: 0 0 3px $shadow-weak;
cursor: default;