1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 21:02:13 +03:00

Box-sizing CSS style for whole project

This commit is contained in:
zeot 2018-09-12 22:58:08 +03:00
parent 24f9f1b663
commit 6592f5befd

View File

@ -18,7 +18,9 @@ export default class RootComponent extends Vue {}
</script>
<style>
.flex-1 {
flex: 1
*,
*:before,
*:after {
box-sizing: border-box;
}
</style>