UI improvements

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-06-17 15:54:24 +02:00
parent 7cd45a1351
commit b5f295c5d9
32 changed files with 200 additions and 166 deletions

View File

@@ -83,9 +83,9 @@ export default class Dashboard extends Vue {
line-height: 1.125;
}
article.tile {
a {
color: #4a4a4a;
}
.tile a,
article.tile a {
color: #4a4a4a;
text-decoration: none;
}
</style>

View File

@@ -66,10 +66,14 @@ export default class Follows extends Vue {
relayFollowers: Paginate<IFollower> = { elements: [], total: 0 };
}
</script>
<style lang="scss">
<style lang="scss" scoped>
.tab-item {
form {
margin-bottom: 1.5rem;
}
}
a {
text-decoration: none !important;
}
</style>

View File

@@ -139,3 +139,13 @@ export default class Settings extends Vue {
}
}
</script>
<style lang="scss" scoped>
@import "../../variables.scss";
.notification a {
color: $primary !important;
text-decoration: underline !important;
text-decoration-color: #fea72b !important;
text-decoration-thickness: 2px !important;
}
</style>