Skip to content

Commit c1be8b5

Browse files
committed
fix: fixed comments left in review
1 parent 4438e39 commit c1be8b5

2 files changed

Lines changed: 19 additions & 20 deletions

File tree

src/App.vue

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,34 @@ div#wrapper
99
new-release-notification(v-if="isNewReleaseCheckEnabled")
1010
router-view
1111

12-
div.container(style="color: #555; font-size: 0.9em").px-0.px-md-2
13-
div(style="float: left")
12+
div.container(style="color: #555; font-size: 0.9em")
13+
div.mb-2
1414
| Made with ❤ by the #[a(href="http://activitywatch.net/contributors/") ActivityWatch developers]
1515
div
1616
span.mt-2(v-show="info", style="color: #888; font-size: 0.8em")
1717
| #[b Version:] {{info.version}}.
1818
| #[b Host:] {{info.hostname}}
19-
div.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]
19+
div.pb-3.mb-3
20+
div.float-left
21+
a(href="https://twitter.com/ActivityWatchIt", target="_blank").mr-2
22+
icon(name="brands/twitter")
23+
| Twitter
24+
a(href="https://github.com/ActivityWatch", target="_blank")
25+
icon(name="brands/github")
26+
| GitHub
27+
div.float-right
28+
a(href="https://github.com/ActivityWatch/activitywatch/issues/new/choose").mr-3
29+
| Report a bug
30+
a(href="https://forum.activitywatch.net/c/support").mr-3
31+
| Ask for help
32+
a(href="https://forum.activitywatch.net/c/features")
33+
| Vote for features
2634
</template>
2735

2836
<script>
2937
// only import the icons you use to reduce bundle size
3038
import 'vue-awesome/icons/brands/twitter';
39+
import 'vue-awesome/icons/brands/github';
3140
3241
export default {
3342
data: function () {

src/style/style.scss

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ button {
1010
text-rendering: optimizeLegibility;
1111
}
1212

13-
h1, h2, h3, nav {
13+
h1, h2, h3, h4, h5, nav {
1414
font-family: 'Varela Round', sans-serif;
1515
}
1616

@@ -31,13 +31,3 @@ body {
3131
border: 1px solid $lightBorderColor;
3232
border-radius: 5px;
3333
}
34-
35-
// TODO pretty sure we can replace these styles with something bootstrap native
36-
.footer {
37-
float: right;
38-
text-align: right
39-
}
40-
41-
.footer a {
42-
margin-left: 13px;
43-
}

0 commit comments

Comments
 (0)