1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 04:42:24 +03:00

Consistent paragraph margins

This commit is contained in:
Avele 2019-07-10 11:07:05 +04:00
parent b4c05a3e13
commit f0b20a2636
2 changed files with 7 additions and 5 deletions

View File

@ -50,7 +50,13 @@ export default class RootComponent extends Vue {
box-sizing: border-box;
}
p {
margin: 0;
margin-bottom: 10px;
}
li p {
margin-bottom: 0;
}
ul li:not(:last-child) {
margin-bottom: 2px;
}
code {
color: inherit;

View File

@ -113,10 +113,6 @@ export default class CategoryDescriptiom extends Vue {
font-size: 1rem;
margin: 5px 0;
}
p {
margin: 10px 0;
}
}
</style>