<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="icon" type="image/png" href="/icon.png">
<title>Vue SFC Playground</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<template>
<nav>
- <h1>Vue SFC Playground</h1>
+ <h1>
+ <img alt="logo" src="/icon.png">
+ <span>Vue SFC Playground</span>
+ </h1>
<div class="links">
- <a class="commit-link" :href="`https://github.com/vuejs/vue-next/tree/${commit}`" target="_blank">
- vue@{{ commit }}
- </a>
<a class="commit-link" href="https://app.netlify.com/sites/vue-sfc-playground/deploys" target="_blank">
- History
+ @{{ commit }}
</a>
<button class="share" @click="copyLink">
<svg width="1.4em" height="1.4em" viewBox="0 0 24 24">
vertical-align: middle;
}
+h1 img {
+ height: 24px;
+ vertical-align: middle;
+ margin-right: 10px;
+ position: relative;
+ top: -2px;
+}
+
+@media (max-width:400px) {
+ h1 span {
+ display: none;
+ }
+}
+
.commit-link {
color: var(--color-branding);
text-decoration: none;
.share {
position: relative;
top: 6px;
+ margin: 0 2px;
}
.download {
position: relative;
top: 8px;
+ margin: 0 2px;
}
.commit-link {