Skip to content

Commit 2f1c6a7

Browse files
committed
Simplify bottom container
There are a ton of links on the bottom of the page. I simplified the link text and simplified the visual display so it's less noisy.
1 parent e236c5e commit 2f1c6a7

File tree

1 file changed

+13
-25
lines changed

1 file changed

+13
-25
lines changed

src/App.vue

Lines changed: 13 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,32 @@
22
div#wrapper
33
aw-header
44

5-
div(:class="{'container': !fullContainer, 'container-fluid': fullContainer}").px-0.px-md-3
5+
div(:class="{'container': !fullContainer, 'container-fluid': fullContainer}").px-0.px-md-2
66
div.aw-container.my-3.p-3
77
error-boundary
88
user-satisfaction-poll
99
new-release-notification(v-if="isNewReleaseCheckEnabled")
1010
router-view
1111

12-
div.container(style="color: #555")
12+
div.container(style="color: #555; font-size: 0.9em")
1313
div(style="float: left")
14-
div.mb-1
15-
| Made with ❤ by the #[a(href="http://activitywatch.net/contributors/") ActivityWatch developers]
14+
| Made with ❤ by the #[a(href="http://activitywatch.net/contributors/") ActivityWatch developers]
1615
div
17-
a.mr-2(href="https://github.com/ActivityWatch/activitywatch", target="_blank")
18-
icon(name="brands/github")
19-
| GitHub
20-
a(href="https://twitter.com/ActivityWatchIt", target="_blank")
21-
icon(name="brands/twitter")
22-
| Twitter
23-
24-
div(style="float: right; text-align: right;")
25-
| Found a bug? #[a(href="https://github.com/ActivityWatch/activitywatch/issues/new/choose") File an issue]
26-
br
27-
| Need help? #[a(href="https://forum.activitywatch.net/c/support") Ask on the forum]
28-
br
29-
| Missing a feature? #[a(href="https://forum.activitywatch.net/c/features") Vote on the forum]
30-
br
31-
| Built something cool? #[a(href="https://forum.activitywatch.net/c/projects") Share it on the forum]
32-
br
33-
span.mt-2(v-show="info", style="color: #888; font-size: 0.8em")
34-
| Host: {{info.hostname}}
35-
br
36-
| Version: {{info.version}}
16+
span.mt-2(v-show="info", style="color: #888; font-size: 0.8em")
17+
| #[b Version:] {{info.version}}.
18+
| #[b Host:] {{info.hostname}}
19+
div(class="footer")
20+
a(href="https://twitter.com/ActivityWatchIt", target="_blank")
21+
icon(name="brands/twitter")
22+
| Twitter
23+
| #[a(href="https://github.com/ActivityWatch/activitywatch/issues/new/choose") File a bug]
24+
| #[a(href="https://forum.activitywatch.net/c/support") Join the Forum]
25+
| #[a(href="https://forum.activitywatch.net/c/features") Vote on the forum]
3726
</template>
3827

3928
<script>
4029
// only import the icons you use to reduce bundle size
4130
import 'vue-awesome/icons/brands/twitter';
42-
import 'vue-awesome/icons/brands/github';
4331
4432
export default {
4533
data: function () {

0 commit comments

Comments
 (0)