Remove HomeDownloadItem header div

This commit is contained in:
Dominik Korsa 2019-03-03 16:54:36 +01:00
parent 12424514f9
commit 1759b5f9e0

View file

@ -1,11 +1,9 @@
<template> <template>
<div class="download-dev-item"> <div class="download-dev-item">
<div class="header"> <a class="header" :href="github" @click="titleClick">
<a :href="github" @click="titleClick"> <span class="title">{{ title }}</span>
<span class="title">{{ title }}</span> <span class="number"> #{{ number }}</span>
<span class="number"> #{{ number }}</span> </a>
</a>
</div>
<div class="subheader"> <div class="subheader">
<span class="build-number">{{ build }}</span> <span class="build-number">{{ build }}</span>
<a <a
@ -143,6 +141,12 @@ export default {
font-size: 20px; font-size: 20px;
margin-bottom: 8px; margin-bottom: 8px;
line-height: 24px; line-height: 24px;
text-decoration: none;
justify-self: start;
&:hover .title, &:hover .number {
text-decoration: underline;
}
@media screen and (max-width: 450px) { @media screen and (max-width: 450px) {
font-size: 18px; font-size: 18px;
@ -156,14 +160,6 @@ export default {
color: #0009; color: #0009;
font-weight: 300; font-weight: 300;
} }
a {
text-decoration: none;
&:hover .title, &:hover .number {
text-decoration: underline;
}
}
} }
.subheader { .subheader {