Fix styles of error page

This commit is contained in:
2020-02-11 02:15:33 +02:00
parent e88aa526d1
commit a811718fb7
2 changed files with 15 additions and 17 deletions

View File

@@ -57,3 +57,18 @@ input[type="button"] {
margin-top: 0.55em;
}
}
.social {
color: $color-gray;
text-decoration: none;
padding: 0 4px;
border-radius: 5px;
&:hover {
color: $color-dark-blue;
}
&:active {
color: $color-dark-blue;
}
}

View File

@@ -31,20 +31,3 @@ import TicTacToe from '~/components/TicTacToe/TicTacToe.vue';
@Component({ components: { TicTacToe } })
export default class Home extends Vue {}
</script>
<style lang="scss">
.social {
color: $color-gray;
text-decoration: none;
padding: 0 4px;
border-radius: 5px;
&:hover {
color: $color-dark-blue;
}
&:active {
color: $color-dark-blue;
}
}
</style>