Fix beta item released link size
This commit is contained in:
parent
4ce3f7724e
commit
12424514f9
1 changed files with 7 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="download-beta-item">
|
||||
<div class="code"><a :href="github" @click="codeClick">{{ code }}</a></div>
|
||||
<a :href="github" @click="codeClick" class="code">{{ code }}</a>
|
||||
<a
|
||||
class="released"
|
||||
:title="releasedString"
|
||||
|
@ -120,16 +120,14 @@ export default {
|
|||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 24px;
|
||||
margin-bottom: 2px;
|
||||
|
||||
a {
|
||||
color: #D32F2F;
|
||||
text-decoration: none;
|
||||
justify-self: start;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.released {
|
||||
grid-column: 1;
|
||||
|
@ -138,6 +136,7 @@ export default {
|
|||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 14px;
|
||||
text-decoration: none;
|
||||
justify-self: start;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
|
|
Loading…
Reference in a new issue