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>
|
<template>
|
||||||
<div class="download-beta-item">
|
<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
|
<a
|
||||||
class="released"
|
class="released"
|
||||||
:title="releasedString"
|
:title="releasedString"
|
||||||
|
@ -120,14 +120,12 @@ export default {
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
|
color: #D32F2F;
|
||||||
|
text-decoration: none;
|
||||||
|
justify-self: start;
|
||||||
|
|
||||||
a {
|
&:hover {
|
||||||
color: #D32F2F;
|
text-decoration: underline;
|
||||||
text-decoration: none;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,6 +136,7 @@ export default {
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
justify-self: start;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
Loading…
Reference in a new issue