Update font family to make design consistent in all platforms (#318)

* Add inter font, remove modal header bg

* Remove unnecessary font files

* Fix codeclimate issues, remove letter-spacing attribute
This commit is contained in:
Pranav Raj S
2019-11-28 11:03:01 +05:30
committed by Nithin David Thomas
parent 6c653e9ef3
commit 6e911e69f8
26 changed files with 82 additions and 16 deletions

View File

@@ -6,12 +6,12 @@
<span>{{ headerTitle }}</span>
</h1>
<router-link
:to="buttonRoute"
class="button icon success"
v-if="showNewButton && showButton && currentRole"
:to="buttonRoute"
class="button icon success nice"
>
<i class="icon ion-android-add-circle"></i>
{{buttonText}}
{{ buttonText }}
</router-link>
</div>
</template>
@@ -20,6 +20,9 @@ import BackButton from '../../../components/widgets/BackButton';
import Auth from '../../../api/auth';
export default {
components: {
BackButton,
},
props: {
headerTitle: String,
buttonRoute: String,
@@ -43,8 +46,5 @@ export default {
return role === 'administrator';
},
},
components: {
BackButton,
},
};
</script>