fix(wheel): add padding 20px to the wheel container

This commit is contained in:
2020-01-14 00:44:29 +01:00
parent af6dffd36e
commit 098efd9379

View File

@@ -1,5 +1,5 @@
<template> <template>
<div> <div id="chart_container">
<div id="chart"></div> <div id="chart"></div>
<div id="question"><h1></h1></div> <div id="question"><h1></h1></div>
</div> </div>
@@ -153,4 +153,8 @@
transform:translate(0,-50%); transform:translate(0,-50%);
} }
#chart_container{
padding: 20px;
}
</style> </style>