1
0
mirror of https://github.com/taigrr/homer synced 2025-01-18 04:53:12 -08:00

hotfix: extract inline style to satiate prettify

This commit is contained in:
Tai Groot 2020-10-26 04:59:52 -07:00
parent e028716b18
commit 837446bc33
Signed by: taigrr
GPG Key ID: D00C269A87614812
2 changed files with 6 additions and 3 deletions

View File

@ -57,6 +57,9 @@ body {
bottom:0;
right:0;
}
.thirty-five {
font-size: 35px;
}
}
.message {

View File

@ -3,7 +3,6 @@ export default {};
</script>
<style></style>
*/
<script>
export default {};
@ -29,7 +28,7 @@ export default {};
</div>
<div v-if="item.icon" class="media-left">
<figure class="image is-48x48">
<i style="font-size: 35px;" :class="['fa-fw', item.icon]"></i>
<i class="thirty-five" :class="['fa-fw', item.icon]"></i>
</figure>
</div>
<div class="media-content">
@ -37,7 +36,8 @@ export default {};
<p class="subtitle is-6">{{ item.subtitle }}</p>
</div>
</div>
<a v-if="item.info"
<a
v-if="item.info"
:href="item.info"
:target="item.infotarget"
rel="noreferrer"